Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / webnavigation / api / test_api.js
blob906041e9eceffe10cb4339a49788f425eadace1a
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 chrome.webNavigation.onBeforeNavigate.addListener(
6     function(details) {});
7 chrome.webNavigation.onCommitted.addListener(
8     function(details) {});
9 chrome.webNavigation.onDOMContentLoaded.addListener(
10     function(details) {});
11 chrome.webNavigation.onCompleted.addListener(
12     function(details) {});
13 chrome.webNavigation.onErrorOccurred.addListener(
14     function(details) {});
15 chrome.webNavigation.onCreatedNavigationTarget.addListener(
16     function(details) {});
17 chrome.test.notifyPass();