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

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

Issue 8342048: Make NotificationService an interface in the content namespace, and switch callers to use it. Mov... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/browsing_instance.h" 17 #include "content/browser/browsing_instance.h"
18 #include "content/browser/child_process_security_policy.h" 18 #include "content/browser/child_process_security_policy.h"
19 #include "content/browser/renderer_host/render_view_host_delegate.h" 19 #include "content/browser/renderer_host/render_view_host_delegate.h"
20 #include "content/browser/renderer_host/render_view_host.h" 20 #include "content/browser/renderer_host/render_view_host.h"
21 #include "content/browser/site_instance.h" 21 #include "content/browser/site_instance.h"
22 #include "content/common/notification_service.h" 22 #include "content/public/browser/notification_service.h"
23 #include "content/common/view_messages.h" 23 #include "content/common/view_messages.h"
24 24
25 ChromeRenderViewHostObserver::ChromeRenderViewHostObserver( 25 ChromeRenderViewHostObserver::ChromeRenderViewHostObserver(
26 RenderViewHost* render_view_host, chrome_browser_net::Predictor* predictor) 26 RenderViewHost* render_view_host, chrome_browser_net::Predictor* predictor)
27 : RenderViewHostObserver(render_view_host), 27 : RenderViewHostObserver(render_view_host),
28 predictor_(predictor) { 28 predictor_(predictor) {
29 InitRenderViewHostForExtensions(); 29 InitRenderViewHostForExtensions();
30 } 30 }
31 31
32 ChromeRenderViewHostObserver::~ChromeRenderViewHostObserver() { 32 ChromeRenderViewHostObserver::~ChromeRenderViewHostObserver() {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 if (!service) 139 if (!service)
140 return NULL; 140 return NULL;
141 141
142 // May be null if somebody typos a chrome-extension:// URL. 142 // May be null if somebody typos a chrome-extension:// URL.
143 return service->GetExtensionByURL(site); 143 return service->GetExtensionByURL(site);
144 } 144 }
145 145
146 void ChromeRenderViewHostObserver::OnDomOperationResponse( 146 void ChromeRenderViewHostObserver::OnDomOperationResponse(
147 const std::string& json_string, int automation_id) { 147 const std::string& json_string, int automation_id) {
148 DomOperationNotificationDetails details(json_string, automation_id); 148 DomOperationNotificationDetails details(json_string, automation_id);
149 NotificationService::current()->Notify( 149 content::NotificationService::current()->Notify(
150 chrome::NOTIFICATION_DOM_OPERATION_RESPONSE, 150 chrome::NOTIFICATION_DOM_OPERATION_RESPONSE,
151 content::Source<RenderViewHost>(render_view_host()), 151 content::Source<RenderViewHost>(render_view_host()),
152 content::Details<DomOperationNotificationDetails>(&details)); 152 content::Details<DomOperationNotificationDetails>(&details));
153 } 153 }
154 154
155 void ChromeRenderViewHostObserver::OnFocusedEditableNodeTouched() { 155 void ChromeRenderViewHostObserver::OnFocusedEditableNodeTouched() {
156 NotificationService::current()->Notify( 156 content::NotificationService::current()->Notify(
157 chrome::NOTIFICATION_FOCUSED_EDITABLE_NODE_TOUCHED, 157 chrome::NOTIFICATION_FOCUSED_EDITABLE_NODE_TOUCHED,
158 content::Source<RenderViewHost>(render_view_host()), 158 content::Source<RenderViewHost>(render_view_host()),
159 NotificationService::NoDetails()); 159 content::NotificationService::NoDetails());
160 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698