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

Unified Diff: chrome/browser/extensions/extension_dom_ui.cc

Issue 3859003: FBTF: Even more ctor/virtual deinlining. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 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/browser/extensions/extension_dom_ui.cc
diff --git a/chrome/browser/extensions/extension_dom_ui.cc b/chrome/browser/extensions/extension_dom_ui.cc
index 554c005f181ac2d94a7aae24f16733d993b77851..08f3b45f87803934ae5b10fd27a4f93bae520182 100644
--- a/chrome/browser/extensions/extension_dom_ui.cc
+++ b/chrome/browser/extensions/extension_dom_ui.cc
@@ -146,6 +146,8 @@ ExtensionDOMUI::ExtensionDOMUI(TabContents* tab_contents, GURL url)
}
}
+ExtensionDOMUI::~ExtensionDOMUI() {}
+
void ExtensionDOMUI::ResetExtensionFunctionDispatcher(
RenderViewHost* render_view_host) {
// Use the NavigationController to get the URL rather than the TabContents
@@ -189,10 +191,19 @@ Browser* ExtensionDOMUI::GetBrowser() const {
return BrowserList::FindBrowserWithProfile(DOMUI::GetProfile());
}
+TabContents* ExtensionDOMUI::associated_tab_contents() const {
+ return tab_contents();
+}
+
Profile* ExtensionDOMUI::GetProfile() {
return DOMUI::GetProfile();
}
+ExtensionBookmarkManagerEventRouter*
+ExtensionDOMUI::extension_bookmark_manager_event_router() {
+ return extension_bookmark_manager_event_router_.get();
+}
+
gfx::NativeWindow ExtensionDOMUI::GetCustomFrameNativeWindow() {
if (GetBrowser())
return NULL;

Powered by Google App Engine
This is Rietveld 408576698