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

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

Issue 2473003002: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Another missing forward declaration Created 4 years, 1 month 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
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | 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 #include <memory> 9 #include <memory>
10 10
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 using blink::WebIconURL; 223 using blink::WebIconURL;
224 using blink::WebImage; 224 using blink::WebImage;
225 using blink::WebInputElement; 225 using blink::WebInputElement;
226 using blink::WebInputEvent; 226 using blink::WebInputEvent;
227 using blink::WebLocalFrame; 227 using blink::WebLocalFrame;
228 using blink::WebMediaPlayerAction; 228 using blink::WebMediaPlayerAction;
229 using blink::WebMouseEvent; 229 using blink::WebMouseEvent;
230 using blink::WebNavigationPolicy; 230 using blink::WebNavigationPolicy;
231 using blink::WebNavigationType; 231 using blink::WebNavigationType;
232 using blink::WebNode; 232 using blink::WebNode;
233 using blink::WebPeerConnection00Handler;
234 using blink::WebPeerConnection00HandlerClient;
235 using blink::WebPeerConnectionHandler;
236 using blink::WebPeerConnectionHandlerClient;
237 using blink::WebPluginAction; 233 using blink::WebPluginAction;
238 using blink::WebPoint; 234 using blink::WebPoint;
239 using blink::WebRect; 235 using blink::WebRect;
240 using blink::WebReferrerPolicy; 236 using blink::WebReferrerPolicy;
241 using blink::WebScriptSource; 237 using blink::WebScriptSource;
242 using blink::WebSearchableFormData; 238 using blink::WebSearchableFormData;
243 using blink::WebSecurityOrigin; 239 using blink::WebSecurityOrigin;
244 using blink::WebSecurityPolicy; 240 using blink::WebSecurityPolicy;
245 using blink::WebSettings; 241 using blink::WebSettings;
246 using blink::WebSize; 242 using blink::WebSize;
(...skipping 2747 matching lines...) Expand 10 before | Expand all | Expand 10 after
2994 NotifyInputEventHandled(input_event->type, 2990 NotifyInputEventHandled(input_event->type,
2995 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); 2991 INPUT_EVENT_ACK_STATE_NOT_CONSUMED);
2996 } 2992 }
2997 2993
2998 std::unique_ptr<InputEventAck> ack( 2994 std::unique_ptr<InputEventAck> ack(
2999 new InputEventAck(input_event->type, INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); 2995 new InputEventAck(input_event->type, INPUT_EVENT_ACK_STATE_NOT_CONSUMED));
3000 OnInputEventAck(std::move(ack)); 2996 OnInputEventAck(std::move(ack));
3001 } 2997 }
3002 2998
3003 } // namespace content 2999 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698