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

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: Clean up bindings API 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
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" 131 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h"
132 #include "third_party/WebKit/Source/Platform/chromium/public/WebDragData.h" 132 #include "third_party/WebKit/Source/Platform/chromium/public/WebDragData.h"
133 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h" 133 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3 D.h"
134 #include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h" 134 #include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h"
135 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" 135 #include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h"
136 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" 136 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h"
137 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" 137 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h"
138 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" 138 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
139 #include "third_party/WebKit/Source/Platform/chromium/public/WebSocketStreamHand le.h" 139 #include "third_party/WebKit/Source/Platform/chromium/public/WebSocketStreamHand le.h"
140 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" 140 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
141 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
141 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLError.h" 142 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLError.h"
142 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
143 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" 143 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h"
144 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h" 144 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h"
145 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" 145 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h"
146 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h" 146 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec t.h"
147 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" 147 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h"
148 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h" 148 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h"
149 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMessageEvent.h" 149 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMessageEvent.h"
150 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 150 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
151 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserCom pletion.h" 151 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserCom pletion.h"
152 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserPar ams.h" 152 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDateTimeChooserPar ams.h"
(...skipping 6551 matching lines...) Expand 10 before | Expand all | Expand 10 after
6704 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle); 6704 TransportDIB* dib = TransportDIB::CreateWithHandle(dib_handle);
6705 RenderProcess::current()->ReleaseTransportDIB(dib); 6705 RenderProcess::current()->ReleaseTransportDIB(dib);
6706 } 6706 }
6707 6707
6708 void RenderViewImpl::DidCommitCompositorFrame() { 6708 void RenderViewImpl::DidCommitCompositorFrame() {
6709 RenderWidget::DidCommitCompositorFrame(); 6709 RenderWidget::DidCommitCompositorFrame();
6710 FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCommitCompositorFrame()); 6710 FOR_EACH_OBSERVER(RenderViewObserver, observers_, DidCommitCompositorFrame());
6711 } 6711 }
6712 6712
6713 } // namespace content 6713 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698