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

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

Issue 2199523002: Convert WebRange to be a simple pair of numbers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot the exports. Created 4 years, 4 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
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_widget.cc » ('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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 using blink::WebMouseEvent; 231 using blink::WebMouseEvent;
232 using blink::WebNavigationPolicy; 232 using blink::WebNavigationPolicy;
233 using blink::WebNavigationType; 233 using blink::WebNavigationType;
234 using blink::WebNode; 234 using blink::WebNode;
235 using blink::WebPeerConnection00Handler; 235 using blink::WebPeerConnection00Handler;
236 using blink::WebPeerConnection00HandlerClient; 236 using blink::WebPeerConnection00HandlerClient;
237 using blink::WebPeerConnectionHandler; 237 using blink::WebPeerConnectionHandler;
238 using blink::WebPeerConnectionHandlerClient; 238 using blink::WebPeerConnectionHandlerClient;
239 using blink::WebPluginAction; 239 using blink::WebPluginAction;
240 using blink::WebPoint; 240 using blink::WebPoint;
241 using blink::WebRange;
242 using blink::WebRect; 241 using blink::WebRect;
243 using blink::WebReferrerPolicy; 242 using blink::WebReferrerPolicy;
244 using blink::WebScriptSource; 243 using blink::WebScriptSource;
245 using blink::WebSearchableFormData; 244 using blink::WebSearchableFormData;
246 using blink::WebSecurityOrigin; 245 using blink::WebSecurityOrigin;
247 using blink::WebSecurityPolicy; 246 using blink::WebSecurityPolicy;
248 using blink::WebSettings; 247 using blink::WebSettings;
249 using blink::WebSize; 248 using blink::WebSize;
250 using blink::WebStorageNamespace; 249 using blink::WebStorageNamespace;
251 using blink::WebStorageQuotaCallbacks; 250 using blink::WebStorageQuotaCallbacks;
(...skipping 2828 matching lines...) Expand 10 before | Expand all | Expand 10 after
3080 return render_frame->focused_pepper_plugin(); 3079 return render_frame->focused_pepper_plugin();
3081 } 3080 }
3082 frame = frame->traverseNext(false); 3081 frame = frame->traverseNext(false);
3083 } 3082 }
3084 3083
3085 return nullptr; 3084 return nullptr;
3086 } 3085 }
3087 #endif 3086 #endif
3088 3087
3089 } // namespace content 3088 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698