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
);