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

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

Issue 68683009: Rewrite include paths for Blink public/ headers that have moved (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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_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 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 #include "net/http/http_util.h" 140 #include "net/http/http_util.h"
141 #include "third_party/WebKit/public/platform/WebCString.h" 141 #include "third_party/WebKit/public/platform/WebCString.h"
142 #include "third_party/WebKit/public/platform/WebDragData.h" 142 #include "third_party/WebKit/public/platform/WebDragData.h"
143 #include "third_party/WebKit/public/platform/WebHTTPBody.h" 143 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
144 #include "third_party/WebKit/public/platform/WebImage.h" 144 #include "third_party/WebKit/public/platform/WebImage.h"
145 #include "third_party/WebKit/public/platform/WebMessagePortChannel.h" 145 #include "third_party/WebKit/public/platform/WebMessagePortChannel.h"
146 #include "third_party/WebKit/public/platform/WebPoint.h" 146 #include "third_party/WebKit/public/platform/WebPoint.h"
147 #include "third_party/WebKit/public/platform/WebRect.h" 147 #include "third_party/WebKit/public/platform/WebRect.h"
148 #include "third_party/WebKit/public/platform/WebSize.h" 148 #include "third_party/WebKit/public/platform/WebSize.h"
149 #include "third_party/WebKit/public/platform/WebSocketStreamHandle.h" 149 #include "third_party/WebKit/public/platform/WebSocketStreamHandle.h"
150 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h"
150 #include "third_party/WebKit/public/platform/WebString.h" 151 #include "third_party/WebKit/public/platform/WebString.h"
151 #include "third_party/WebKit/public/platform/WebURL.h" 152 #include "third_party/WebKit/public/platform/WebURL.h"
152 #include "third_party/WebKit/public/platform/WebURLError.h" 153 #include "third_party/WebKit/public/platform/WebURLError.h"
153 #include "third_party/WebKit/public/platform/WebURLRequest.h" 154 #include "third_party/WebKit/public/platform/WebURLRequest.h"
154 #include "third_party/WebKit/public/platform/WebURLResponse.h" 155 #include "third_party/WebKit/public/platform/WebURLResponse.h"
155 #include "third_party/WebKit/public/platform/WebVector.h" 156 #include "third_party/WebKit/public/platform/WebVector.h"
156 #include "third_party/WebKit/public/web/WebAXObject.h" 157 #include "third_party/WebKit/public/web/WebAXObject.h"
157 #include "third_party/WebKit/public/web/WebColorName.h" 158 #include "third_party/WebKit/public/web/WebColorName.h"
158 #include "third_party/WebKit/public/web/WebDOMEvent.h" 159 #include "third_party/WebKit/public/web/WebDOMEvent.h"
159 #include "third_party/WebKit/public/web/WebDOMMessageEvent.h" 160 #include "third_party/WebKit/public/web/WebDOMMessageEvent.h"
(...skipping 23 matching lines...) Expand all
183 #include "third_party/WebKit/public/web/WebPluginDocument.h" 184 #include "third_party/WebKit/public/web/WebPluginDocument.h"
184 #include "third_party/WebKit/public/web/WebPluginParams.h" 185 #include "third_party/WebKit/public/web/WebPluginParams.h"
185 #include "third_party/WebKit/public/web/WebRange.h" 186 #include "third_party/WebKit/public/web/WebRange.h"
186 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 187 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
187 #include "third_party/WebKit/public/web/WebScriptSource.h" 188 #include "third_party/WebKit/public/web/WebScriptSource.h"
188 #include "third_party/WebKit/public/web/WebSearchableFormData.h" 189 #include "third_party/WebKit/public/web/WebSearchableFormData.h"
189 #include "third_party/WebKit/public/web/WebSecurityOrigin.h" 190 #include "third_party/WebKit/public/web/WebSecurityOrigin.h"
190 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" 191 #include "third_party/WebKit/public/web/WebSecurityPolicy.h"
191 #include "third_party/WebKit/public/web/WebSerializedScriptValue.h" 192 #include "third_party/WebKit/public/web/WebSerializedScriptValue.h"
192 #include "third_party/WebKit/public/web/WebSettings.h" 193 #include "third_party/WebKit/public/web/WebSettings.h"
193 #include "third_party/WebKit/public/web/WebStorageQuotaCallbacks.h"
194 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" 194 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
195 #include "third_party/WebKit/public/web/WebUserMediaClient.h" 195 #include "third_party/WebKit/public/web/WebUserMediaClient.h"
196 #include "third_party/WebKit/public/web/WebView.h" 196 #include "third_party/WebKit/public/web/WebView.h"
197 #include "third_party/WebKit/public/web/WebWindowFeatures.h" 197 #include "third_party/WebKit/public/web/WebWindowFeatures.h"
198 #include "third_party/WebKit/public/web/default/WebRenderTheme.h" 198 #include "third_party/WebKit/public/web/default/WebRenderTheme.h"
199 #include "ui/base/ui_base_switches_util.h" 199 #include "ui/base/ui_base_switches_util.h"
200 #include "ui/events/latency_info.h" 200 #include "ui/events/latency_info.h"
201 #include "ui/gfx/native_widget_types.h" 201 #include "ui/gfx/native_widget_types.h"
202 #include "ui/gfx/point.h" 202 #include "ui/gfx/point.h"
203 #include "ui/gfx/rect.h" 203 #include "ui/gfx/rect.h"
(...skipping 6454 matching lines...) Expand 10 before | Expand all | Expand 10 after
6658 for (size_t i = 0; i < icon_urls.size(); i++) { 6658 for (size_t i = 0; i < icon_urls.size(); i++) {
6659 WebURL url = icon_urls[i].iconURL(); 6659 WebURL url = icon_urls[i].iconURL();
6660 if (!url.isEmpty()) 6660 if (!url.isEmpty())
6661 urls.push_back(FaviconURL(url, 6661 urls.push_back(FaviconURL(url,
6662 ToFaviconType(icon_urls[i].iconType()))); 6662 ToFaviconType(icon_urls[i].iconType())));
6663 } 6663 }
6664 SendUpdateFaviconURL(urls); 6664 SendUpdateFaviconURL(urls);
6665 } 6665 }
6666 6666
6667 } // namespace content 6667 } // 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