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

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

Issue 1311543005: Show hosted app requests to extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use extension_info_map-extensions() Created 5 years, 3 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4 chrome.webRequest.onBeforeRequest.addListener(function(details) {
5 chrome.app.runtime.onLaunched.addListener(function() { 5 chrome.test.sendMessage(details.type);
6 chrome.app.window.create('test.html'); 6 }, {
7 urls: ['*://*/*webrequest_hosted_app*']
7 }); 8 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698