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

Unified Diff: chrome/test/data/extensions/api_test/browser_action/split_mode/background.js

Issue 50433008: Dispatch browser action clicks to the profile for the browser window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (c) Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/browser_action/split_mode/background.js
diff --git a/chrome/test/data/extensions/api_test/browser_action/split_mode/background.js b/chrome/test/data/extensions/api_test/browser_action/split_mode/background.js
new file mode 100644
index 0000000000000000000000000000000000000000..90751008b1277cbcbc7d4dabfa8e81fa27e14c9f
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/browser_action/split_mode/background.js
@@ -0,0 +1,17 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+chrome.browserAction.onClicked.addListener(function(tab) {
+ chrome.tabs.create({ url: 'about:blank' }, function(newtab) {
+ chrome.windows.get(tab.windowId, { populate: true }, function(window) {
+ if (!window) {
+ chrome.test.notifyFail(
+ 'Could not get window for the tab (probably due to wrong profile)');
+ return;
+ }
+ chrome.test.assertEq(2, window.tabs.length);
+ chrome.test.notifyPass();
+ });
+ });
+});

Powered by Google App Engine
This is Rietveld 408576698