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

Side by Side Diff: chrome/test/data/extensions/api_test/webrequest_reload/background.js

Issue 13572005: Fix crash when incognito split mode extension using the WebRequest API was reloaded (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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
OLDNEW
(Empty)
1 // Copyright (c) 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.
4
5 chrome.webRequest.onBeforeRequest.addListener(
6 function(details) {
7 },
8 {
9 urls: [],
10 types: []
11 },
12 []);
13 if (chrome.extension.inIncognitoContext)
14 chrome.test.sendMessage("done_incognito");
15 else
16 chrome.test.sendMessage("done");
OLDNEW
« no previous file with comments | « chrome/browser/extensions/event_router.cc ('k') | chrome/test/data/extensions/api_test/webrequest_reload/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698