summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_browser_event_router.h
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-29 21:22:03 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-29 21:22:03 +0000
commit85ff2c48df0789ae2476cd85738e07cecae9b3e3 (patch)
treed5a15f916376146d8626b92d97556c80627c9d0c /chrome/browser/extensions/extension_browser_event_router.h
parente2eb43115440dc442b92c5842274290caedb146f (diff)
downloadchromium_src-85ff2c48df0789ae2476cd85738e07cecae9b3e3.zip
chromium_src-85ff2c48df0789ae2476cd85738e07cecae9b3e3.tar.gz
chromium_src-85ff2c48df0789ae2476cd85738e07cecae9b3e3.tar.bz2
Revert the Omnibox when changing tabs while its contents have been deleted.
To do this, I needed to add a new TabStripModelObserver call that fired before the tab had been changed, since when the Omnibox asks for the current permanent_text_ it gets it from the selected tab's navigation controller. BUG=6850 Review URL: http://codereview.chromium.org/113983 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17241 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_browser_event_router.h')
-rw-r--r--chrome/browser/extensions/extension_browser_event_router.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_browser_event_router.h b/chrome/browser/extensions/extension_browser_event_router.h
index a818d32..034b2fd 100644
--- a/chrome/browser/extensions/extension_browser_event_router.h
+++ b/chrome/browser/extensions/extension_browser_event_router.h
@@ -49,7 +49,7 @@ class ExtensionBrowserEventRouter : public TabStripModelObserver,
void TabStripEmpty();
// PageActions.
- void PageActionExecuted(Profile *profile,
+ void PageActionExecuted(Profile* profile,
std::string page_action_id,
int tab_id,
std::string url);
@@ -64,7 +64,7 @@ class ExtensionBrowserEventRouter : public TabStripModelObserver,
// Internal processing of tab updated events. Is called by both TabChangedAt
// and Observe/NAV_ENTRY_COMMITTED.
- void TabUpdated(TabContents *contents, bool did_navigate);
+ void TabUpdated(TabContents* contents, bool did_navigate);
ExtensionBrowserEventRouter();
friend struct DefaultSingletonTraits<ExtensionBrowserEventRouter>;