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