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

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

Issue 823703003: Cleanup: Update the path to insets and point headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: point.h Created 6 years 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/pepper/renderer_ppapi_host_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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 #include "third_party/WebKit/public/web/WebSettings.h" 176 #include "third_party/WebKit/public/web/WebSettings.h"
177 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" 177 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
178 #include "third_party/WebKit/public/web/WebView.h" 178 #include "third_party/WebKit/public/web/WebView.h"
179 #include "third_party/WebKit/public/web/WebWindowFeatures.h" 179 #include "third_party/WebKit/public/web/WebWindowFeatures.h"
180 #include "third_party/WebKit/public/web/default/WebRenderTheme.h" 180 #include "third_party/WebKit/public/web/default/WebRenderTheme.h"
181 #include "third_party/icu/source/common/unicode/uchar.h" 181 #include "third_party/icu/source/common/unicode/uchar.h"
182 #include "third_party/icu/source/common/unicode/uscript.h" 182 #include "third_party/icu/source/common/unicode/uscript.h"
183 #include "ui/base/clipboard/clipboard.h" 183 #include "ui/base/clipboard/clipboard.h"
184 #include "ui/base/ui_base_switches_util.h" 184 #include "ui/base/ui_base_switches_util.h"
185 #include "ui/events/latency_info.h" 185 #include "ui/events/latency_info.h"
186 #include "ui/gfx/geometry/point.h"
186 #include "ui/gfx/native_widget_types.h" 187 #include "ui/gfx/native_widget_types.h"
187 #include "ui/gfx/point.h"
188 #include "ui/gfx/rect.h" 188 #include "ui/gfx/rect.h"
189 #include "ui/gfx/rect_conversions.h" 189 #include "ui/gfx/rect_conversions.h"
190 #include "ui/gfx/size_conversions.h" 190 #include "ui/gfx/size_conversions.h"
191 #include "v8/include/v8.h" 191 #include "v8/include/v8.h"
192 192
193 #if defined(OS_ANDROID) 193 #if defined(OS_ANDROID)
194 #include <cpu-features.h> 194 #include <cpu-features.h>
195 195
196 #include "content/renderer/android/address_detector.h" 196 #include "content/renderer/android/address_detector.h"
197 #include "content/renderer/android/content_detector.h" 197 #include "content/renderer/android/content_detector.h"
(...skipping 3893 matching lines...) Expand 10 before | Expand all | Expand 10 after
4091 std::vector<gfx::Size> sizes; 4091 std::vector<gfx::Size> sizes;
4092 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes); 4092 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes);
4093 if (!url.isEmpty()) 4093 if (!url.isEmpty())
4094 urls.push_back( 4094 urls.push_back(
4095 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes)); 4095 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes));
4096 } 4096 }
4097 SendUpdateFaviconURL(urls); 4097 SendUpdateFaviconURL(urls);
4098 } 4098 }
4099 4099
4100 } // namespace content 4100 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/renderer_ppapi_host_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698