android_webview: explicitly use gcc for target binaries.
[chromium-blink-merge.git] / chrome / test / data / extensions / context_menus / incognito / test.js
blob499577452fc6a08ad94c85ea6314bfbaa9904c9e
1 // Copyright (c) 2010 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 var inIncognitoContext = chrome.extension.inIncognitoContext;
6 var incognitoStr = inIncognitoContext ? "incognito" : "regular";
8 function onclick(info) {
9   chrome.test.sendMessage("onclick fired " + incognitoStr);
12 window.onload = function() {
13   chrome.contextMenus.create({title: "item " + incognitoStr,
14                               onclick: onclick}, function() {
15     if (!chrome.runtime.lastError) {
16       chrome.test.sendMessage("created item " + incognitoStr);
17     }
18   });