diff options
Diffstat (limited to 'chrome/browser/tab_contents/background_contents.cc')
-rw-r--r-- | chrome/browser/tab_contents/background_contents.cc | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/background_contents.cc b/chrome/browser/tab_contents/background_contents.cc index 413810e..1904d38 100644 --- a/chrome/browser/tab_contents/background_contents.cc +++ b/chrome/browser/tab_contents/background_contents.cc @@ -6,7 +6,7 @@ #include "chrome/browser/background_contents_service.h" #include "chrome/browser/browsing_instance.h" -#include "chrome/browser/profile.h" +#include "chrome/browser/profiles/profile.h" #include "chrome/browser/renderer_host/render_view_host.h" #include "chrome/browser/renderer_host/site_instance.h" #include "chrome/browser/renderer_preferences_util.h" @@ -58,6 +58,18 @@ BackgroundContents::~BackgroundContents() { render_view_host_->Shutdown(); // deletes render_view_host } +BackgroundContents* BackgroundContents::GetAsBackgroundContents() { + return this; +} + +RenderViewHostDelegate::View* BackgroundContents::GetViewDelegate() { + return this; +} + +const GURL& BackgroundContents::GetURL() const { + return url_; +} + ViewType::Type BackgroundContents::GetRenderViewType() const { return ViewType::BACKGROUND_CONTENTS; } @@ -135,6 +147,14 @@ gfx::NativeWindow BackgroundContents::GetMessageBoxRootWindow() { return NULL; } +TabContents* BackgroundContents::AsTabContents() { + return NULL; +} + +ExtensionHost* BackgroundContents::AsExtensionHost() { + return NULL; +} + void BackgroundContents::UpdateInspectorSetting(const std::string& key, const std::string& value) { Profile* profile = render_view_host_->process()->profile(); |