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

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 11826005: Browser Plugin: Implement BrowserPluginObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT Created 7 years, 9 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
« no previous file with comments | « content/renderer/browser_plugin/mock_browser_plugin_manager.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "content/public/renderer/content_renderer_client.h" 61 #include "content/public/renderer/content_renderer_client.h"
62 #include "content/public/renderer/context_menu_client.h" 62 #include "content/public/renderer/context_menu_client.h"
63 #include "content/public/renderer/document_state.h" 63 #include "content/public/renderer/document_state.h"
64 #include "content/public/renderer/navigation_state.h" 64 #include "content/public/renderer/navigation_state.h"
65 #include "content/public/renderer/password_form_conversion_utils.h" 65 #include "content/public/renderer/password_form_conversion_utils.h"
66 #include "content/public/renderer/render_view_observer.h" 66 #include "content/public/renderer/render_view_observer.h"
67 #include "content/public/renderer/render_view_visitor.h" 67 #include "content/public/renderer/render_view_visitor.h"
68 #include "content/renderer/accessibility/renderer_accessibility.h" 68 #include "content/renderer/accessibility/renderer_accessibility.h"
69 #include "content/renderer/accessibility/renderer_accessibility_complete.h" 69 #include "content/renderer/accessibility/renderer_accessibility_complete.h"
70 #include "content/renderer/accessibility/renderer_accessibility_focus_only.h" 70 #include "content/renderer/accessibility/renderer_accessibility_focus_only.h"
71 #include "content/renderer/browser_plugin/browser_plugin.h" 71 #include "content/renderer/browser_plugin/browser_plugin_impl.h"
72 #include "content/renderer/browser_plugin/browser_plugin_manager.h" 72 #include "content/renderer/browser_plugin/browser_plugin_manager.h"
73 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h" 73 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h"
74 #include "content/renderer/device_orientation_dispatcher.h" 74 #include "content/renderer/device_orientation_dispatcher.h"
75 #include "content/renderer/devtools/devtools_agent.h" 75 #include "content/renderer/devtools/devtools_agent.h"
76 #include "content/renderer/disambiguation_popup_helper.h" 76 #include "content/renderer/disambiguation_popup_helper.h"
77 #include "content/renderer/do_not_track_bindings.h" 77 #include "content/renderer/do_not_track_bindings.h"
78 #include "content/renderer/dom_automation_controller.h" 78 #include "content/renderer/dom_automation_controller.h"
79 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" 79 #include "content/renderer/dom_storage/webstoragenamespace_impl.h"
80 #include "content/renderer/external_popup_menu.h" 80 #include "content/renderer/external_popup_menu.h"
81 #include "content/renderer/favicon_helper.h" 81 #include "content/renderer/favicon_helper.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" 132 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h"
133 #include "third_party/WebKit/Source/Platform/chromium/public/WebDragData.h" 133 #include "third_party/WebKit/Source/Platform/chromium/public/WebDragData.h"
134 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h" 134 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h"
135 #include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h" 135 #include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h"
136 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" 136 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h"
137 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" 137 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h"
138 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" 138 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
139 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" 139 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
140 #include "third_party/WebKit/Source/Platform/chromium/public/WebSocketStreamHand le.h" 140 #include "third_party/WebKit/Source/Platform/chromium/public/WebSocketStreamHand le.h"
141 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" 141 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
142 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
142 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLError.h" 143 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLError.h"
143 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
144 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" 144 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h"
145 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h" 145 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h"
146 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" 146 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h"
147 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h" 147 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h"
148 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" 148 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h"
149 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h" 149 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h"
150 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMessageEvent.h" 150 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMessageEvent.h"
151 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 151 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
152 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserCom pletion.h" 152 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserCom pletion.h"
153 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserPar ams.h" 153 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserPar ams.h"
(...skipping 6577 matching lines...) Expand 10 before | Expand all | Expand 10 after
6731 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); 6731 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle);
6732 RenderProcess::current()->ReleaseTransportDIB(dib); 6732 RenderProcess::current()->ReleaseTransportDIB(dib);
6733 } 6733 }
6734 6734
6735 void RenderViewImpl::DidCommitCompositorFrame() { 6735 void RenderViewImpl::DidCommitCompositorFrame() {
6736 RenderWidget::DidCommitCompositorFrame(); 6736 RenderWidget::DidCommitCompositorFrame();
6737 FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCommitCompositorFrame()); 6737 FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCommitCompositorFrame());
6738 } 6738 }
6739 6739
6740 } // namespace content 6740 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/browser_plugin/mock_browser_plugin_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698