OLD | NEW |
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" | |
18 #include "content/browser/child_process_security_policy.h" | 17 #include "content/browser/child_process_security_policy.h" |
19 #include "content/browser/renderer_host/render_view_host_delegate.h" | 18 #include "content/browser/renderer_host/render_view_host_delegate.h" |
20 #include "content/browser/renderer_host/render_view_host.h" | 19 #include "content/browser/renderer_host/render_view_host.h" |
21 #include "content/browser/site_instance.h" | 20 #include "content/browser/site_instance.h" |
22 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
23 | 22 |
24 ChromeRenderViewHostObserver::ChromeRenderViewHostObserver( | 23 ChromeRenderViewHostObserver::ChromeRenderViewHostObserver( |
25 RenderViewHost* render_view_host, chrome_browser_net::Predictor* predictor) | 24 RenderViewHost* render_view_host, chrome_browser_net::Predictor* predictor) |
26 : content::RenderViewHostObserver(render_view_host), | 25 : content::RenderViewHostObserver(render_view_host), |
27 predictor_(predictor) { | 26 predictor_(predictor) { |
28 SiteInstance* site_instance = render_view_host->site_instance(); | 27 SiteInstance* site_instance = render_view_host->site_instance(); |
29 profile_ = Profile::FromBrowserContext( | 28 profile_ = Profile::FromBrowserContext( |
30 site_instance->browsing_instance()->browser_context()); | 29 site_instance->GetBrowserContext()); |
31 | 30 |
32 InitRenderViewHostForExtensions(); | 31 InitRenderViewHostForExtensions(); |
33 } | 32 } |
34 | 33 |
35 ChromeRenderViewHostObserver::~ChromeRenderViewHostObserver() { | 34 ChromeRenderViewHostObserver::~ChromeRenderViewHostObserver() { |
36 RemoveRenderViewHostForExtensions(render_view_host()); | 35 RemoveRenderViewHostForExtensions(render_view_host()); |
37 } | 36 } |
38 | 37 |
39 void ChromeRenderViewHostObserver::RenderViewHostInitialized() { | 38 void ChromeRenderViewHostObserver::RenderViewHostInitialized() { |
40 InitRenderViewForExtensions(); | 39 InitRenderViewForExtensions(); |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 content::Source<RenderViewHost>(render_view_host()), | 170 content::Source<RenderViewHost>(render_view_host()), |
172 content::Details<DomOperationNotificationDetails>(&details)); | 171 content::Details<DomOperationNotificationDetails>(&details)); |
173 } | 172 } |
174 | 173 |
175 void ChromeRenderViewHostObserver::OnFocusedEditableNodeTouched() { | 174 void ChromeRenderViewHostObserver::OnFocusedEditableNodeTouched() { |
176 content::NotificationService::current()->Notify( | 175 content::NotificationService::current()->Notify( |
177 chrome::NOTIFICATION_FOCUSED_EDITABLE_NODE_TOUCHED, | 176 chrome::NOTIFICATION_FOCUSED_EDITABLE_NODE_TOUCHED, |
178 content::Source<RenderViewHost>(render_view_host()), | 177 content::Source<RenderViewHost>(render_view_host()), |
179 content::NotificationService::NoDetails()); | 178 content::NotificationService::NoDetails()); |
180 } | 179 } |
OLD | NEW |