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

Side by Side Diff: chrome/browser/renderer_host/chrome_render_view_host_observer.cc

Issue 9146028: Define the public interface for content browser SiteInstance. This interface is implemented by th... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/renderer_host/chrome_render_view_host_observer.h" 5 #include "chrome/browser/renderer_host/chrome_render_view_host_observer.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "chrome/browser/dom_operation_notification_details.h" 8 #include "chrome/browser/dom_operation_notification_details.h"
9 #include "chrome/browser/extensions/extension_service.h" 9 #include "chrome/browser/extensions/extension_service.h"
10 #include "chrome/browser/net/predictor.h" 10 #include "chrome/browser/net/predictor.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/common/chrome_notification_types.h" 12 #include "chrome/common/chrome_notification_types.h"
13 #include "chrome/common/chrome_switches.h" 13 #include "chrome/common/chrome_switches.h"
14 #include "chrome/common/extensions/extension_messages.h" 14 #include "chrome/common/extensions/extension_messages.h"
15 #include "chrome/common/render_messages.h" 15 #include "chrome/common/render_messages.h"
16 #include "chrome/common/url_constants.h" 16 #include "chrome/common/url_constants.h"
17 #include "content/browser/child_process_security_policy.h" 17 #include "content/browser/child_process_security_policy.h"
18 #include "content/browser/renderer_host/render_view_host.h" 18 #include "content/browser/renderer_host/render_view_host.h"
19 #include "content/browser/site_instance.h"
20 #include "content/public/browser/notification_service.h" 19 #include "content/public/browser/notification_service.h"
21 #include "content/public/browser/render_view_host_delegate.h" 20 #include "content/public/browser/render_view_host_delegate.h"
21 #include "content/public/browser/site_instance.h"
22
23 using content::SiteInstance;
22 24
23 ChromeRenderViewHostObserver::ChromeRenderViewHostObserver( 25 ChromeRenderViewHostObserver::ChromeRenderViewHostObserver(
24 RenderViewHost* render_view_host, chrome_browser_net::Predictor* predictor) 26 RenderViewHost* render_view_host, chrome_browser_net::Predictor* predictor)
25 : content::RenderViewHostObserver(render_view_host), 27 : content::RenderViewHostObserver(render_view_host),
26 predictor_(predictor) { 28 predictor_(predictor) {
27 SiteInstance* site_instance = render_view_host->site_instance(); 29 SiteInstance* site_instance = render_view_host->site_instance();
28 profile_ = Profile::FromBrowserContext( 30 profile_ = Profile::FromBrowserContext(
29 site_instance->GetBrowserContext()); 31 site_instance->GetBrowserContext());
30 32
31 InitRenderViewHostForExtensions(); 33 InitRenderViewHostForExtensions();
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 extension->location() == Extension::COMPONENT)) { 128 extension->location() == Extension::COMPONENT)) {
127 Send(new ExtensionMsg_ActivateExtension(extension->id())); 129 Send(new ExtensionMsg_ActivateExtension(extension->id()));
128 } 130 }
129 } 131 }
130 132
131 const Extension* ChromeRenderViewHostObserver::GetExtension() { 133 const Extension* ChromeRenderViewHostObserver::GetExtension() {
132 // Note that due to ChromeContentBrowserClient::GetEffectiveURL(), hosted apps 134 // Note that due to ChromeContentBrowserClient::GetEffectiveURL(), hosted apps
133 // (excluding bookmark apps) will have a chrome-extension:// URL for their 135 // (excluding bookmark apps) will have a chrome-extension:// URL for their
134 // site, so we can ignore that wrinkle here. 136 // site, so we can ignore that wrinkle here.
135 SiteInstance* site_instance = render_view_host()->site_instance(); 137 SiteInstance* site_instance = render_view_host()->site_instance();
136 const GURL& site = site_instance->site(); 138 const GURL& site = site_instance->GetSite();
137 139
138 if (!site.SchemeIs(chrome::kExtensionScheme)) 140 if (!site.SchemeIs(chrome::kExtensionScheme))
139 return NULL; 141 return NULL;
140 142
141 ExtensionService* service = profile_->GetExtensionService(); 143 ExtensionService* service = profile_->GetExtensionService();
142 if (!service) 144 if (!service)
143 return NULL; 145 return NULL;
144 146
145 // Reload the extension if it has crashed. 147 // Reload the extension if it has crashed.
146 // TODO(yoz): This reload doesn't happen synchronously for unpacked 148 // TODO(yoz): This reload doesn't happen synchronously for unpacked
(...skipping 23 matching lines...) Expand all
170 content::Source<RenderViewHost>(render_view_host()), 172 content::Source<RenderViewHost>(render_view_host()),
171 content::Details<DomOperationNotificationDetails>(&details)); 173 content::Details<DomOperationNotificationDetails>(&details));
172 } 174 }
173 175
174 void ChromeRenderViewHostObserver::OnFocusedEditableNodeTouched() { 176 void ChromeRenderViewHostObserver::OnFocusedEditableNodeTouched() {
175 content::NotificationService::current()->Notify( 177 content::NotificationService::current()->Notify(
176 chrome::NOTIFICATION_FOCUSED_EDITABLE_NODE_TOUCHED, 178 chrome::NOTIFICATION_FOCUSED_EDITABLE_NODE_TOUCHED,
177 content::Source<RenderViewHost>(render_view_host()), 179 content::Source<RenderViewHost>(render_view_host()),
178 content::NotificationService::NoDetails()); 180 content::NotificationService::NoDetails());
179 } 181 }
OLDNEW
« no previous file with comments | « chrome/browser/notifications/balloon_host.cc ('k') | chrome/browser/tab_contents/background_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698