Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: chrome/test/data/extensions/context_menus/incognito/test.js

Issue 4090011: Fix bug with context menus in incognito mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: manifest fix Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/data/extensions/context_menus/incognito/manifest.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 var inIncognitoContext = chrome.extension.inIncognitoContext;
6 var incognitoStr = inIncognitoContext ? "incognito" : "regular";
7
8 function onclick(info) {
9 chrome.test.sendMessage("onclick fired " + incognitoStr);
10 }
11
12 window.onload = function() {
13 chrome.contextMenus.create({title: "item " + incognitoStr,
14 onclick: onclick}, function() {
15 if (!chrome.extension.lastError) {
16 chrome.test.sendMessage("created item " + incognitoStr);
17 }
18 });
19 };
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/context_menus/incognito/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698