1/*
2 * Copyright (c) 2023-2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16let ExtensionAbility = requireNapi('app.ability.ExtensionAbility');
17
18class AutoFillExtensionAbility extends ExtensionAbility {
19  onCreate() {
20    console.log('onCreate');
21  }
22
23  onFillRequest(session, request, callback) {
24    console.log('onFillRequest');
25  }
26
27  onSaveRequest(session, request, callback) {
28    console.log('onSaveRequest');
29  }
30
31  onUpdateRequest(request) {
32    console.log('onUpdateRequest');
33  }
34
35  onSessionDestroy(session) {
36    console.log('onSessionDestroy');
37  }
38
39  onForeground() {
40    console.log('onForeground');
41  }
42
43  onBackground() {
44    console.log('onBackground');
45  }
46
47  onDestroy() {
48    console.log('onDestroy');
49  }
50}
51
52export default AutoFillExtensionAbility;