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

Unified Diff: chrome/test/data/extensions/browsertest/crash_25562/background.html

Issue 316018: Fix crash with page actions without icons (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/browsertest/crash_25562/background.html
===================================================================
--- chrome/test/data/extensions/browsertest/crash_25562/background.html (revision 0)
+++ chrome/test/data/extensions/browsertest/crash_25562/background.html (revision 0)
@@ -0,0 +1,28 @@
+<html>
+<script>
+ // The Page Action ID.
+ var pageActionId = "TestId";
+
+ // The window this Page Action is associated with.
+ var windowId = -1;
+
+ // The TabId this Page Action is associated with.
+ var tabId = -1;
+
+ // The URL of the page on build.chromium.org.
+ var pageUrl = "";
+
+ chrome.self.onConnect.addListener(function(port) {
+ windowId = port.tab.windowId;
+ tabId = port.tab.id;
+ pageUrl = port.tab.url;
+
+ port.onMessage.addListener(function(mybool) {
+ // Let Chrome know that the PageAction needs to be enabled for this tabId
+ // and for the url of this page.
+ chrome.pageActions.enableForTab(pageActionId,
+ {tabId: tabId, url: pageUrl});
+ });
+ });
+</script>
+</html>
« no previous file with comments | « chrome/browser/views/location_bar_view.cc ('k') | chrome/test/data/extensions/browsertest/crash_25562/chrome-16.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698