Chromium Code Reviews| Index: chrome/browser/extensions/browser_event_router.h |
| diff --git a/chrome/browser/extensions/browser_event_router.h b/chrome/browser/extensions/browser_event_router.h |
| index 24aed8667b0d258b64762dd228dfe438230eeace..618972a24813d8c036ab98aa2d4dc5ffa46d6a59 100644 |
| --- a/chrome/browser/extensions/browser_event_router.h |
| +++ b/chrome/browser/extensions/browser_event_router.h |
| @@ -97,6 +97,10 @@ class BrowserEventRouter : public TabStripModelObserver, |
| // and Observe/NAV_ENTRY_COMMITTED. |
| void TabUpdated(content::WebContents* contents, bool did_navigate); |
| + // Triggers a tab updated event if the favicon URL changes. |
| + void FaviconUrlUpdated(content::WebContents* contents, |
| + bool* icon_url_changed); |
|
pkotwicz
2013/03/13 17:44:49
Nit: const bool*
Timo Reimann
2013/03/13 19:42:13
Done. Also added const qualifier at call site for
|
| + |
| // The DispatchEvent methods forward events to the |profile|'s event router. |
| // The BrowserEventRouter listens to events for all profiles, |
| // so we avoid duplication by dropping events destined for other profiles. |