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

Side by Side Diff: android_webview/browser/browser_view_renderer.cc

Issue 669153008: Cleanup: Update the paths to gfx vector2d_conversions.h include. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | content/browser/renderer_host/render_widget_host_impl.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "android_webview/browser/browser_view_renderer.h" 5 #include "android_webview/browser/browser_view_renderer.h"
6 6
7 #include "android_webview/browser/browser_view_renderer_client.h" 7 #include "android_webview/browser/browser_view_renderer_client.h"
8 #include "android_webview/browser/shared_renderer_state.h" 8 #include "android_webview/browser/shared_renderer_state.h"
9 #include "android_webview/common/aw_switches.h" 9 #include "android_webview/common/aw_switches.h"
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/debug/trace_event_argument.h" 12 #include "base/debug/trace_event_argument.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
16 #include "cc/output/compositor_frame.h" 16 #include "cc/output/compositor_frame.h"
17 #include "content/public/browser/web_contents.h" 17 #include "content/public/browser/web_contents.h"
18 #include "content/public/common/content_switches.h" 18 #include "content/public/common/content_switches.h"
19 #include "gpu/command_buffer/service/gpu_switches.h" 19 #include "gpu/command_buffer/service/gpu_switches.h"
20 #include "third_party/skia/include/core/SkBitmap.h" 20 #include "third_party/skia/include/core/SkBitmap.h"
21 #include "third_party/skia/include/core/SkCanvas.h" 21 #include "third_party/skia/include/core/SkCanvas.h"
22 #include "third_party/skia/include/core/SkPicture.h" 22 #include "third_party/skia/include/core/SkPicture.h"
23 #include "third_party/skia/include/core/SkPictureRecorder.h" 23 #include "third_party/skia/include/core/SkPictureRecorder.h"
24 #include "ui/gfx/vector2d_conversions.h" 24 #include "ui/gfx/geometry/vector2d_conversions.h"
25 25
26 using content::SynchronousCompositorMemoryPolicy; 26 using content::SynchronousCompositorMemoryPolicy;
27 27
28 namespace android_webview { 28 namespace android_webview {
29 29
30 namespace { 30 namespace {
31 31
32 const int64 kFallbackTickTimeoutInMilliseconds = 100; 32 const int64 kFallbackTickTimeoutInMilliseconds = 100;
33 33
34 // Used to calculate memory allocation. Determined experimentally. 34 // Used to calculate memory allocation. Determined experimentally.
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 base::StringAppendF(&str, 809 base::StringAppendF(&str,
810 "overscroll_rounding_error_: %s ", 810 "overscroll_rounding_error_: %s ",
811 overscroll_rounding_error_.ToString().c_str()); 811 overscroll_rounding_error_.ToString().c_str());
812 base::StringAppendF( 812 base::StringAppendF(
813 &str, "on_new_picture_enable: %d ", on_new_picture_enable_); 813 &str, "on_new_picture_enable: %d ", on_new_picture_enable_);
814 base::StringAppendF(&str, "clear_view: %d ", clear_view_); 814 base::StringAppendF(&str, "clear_view: %d ", clear_view_);
815 return str; 815 return str;
816 } 816 }
817 817
818 } // namespace android_webview 818 } // namespace android_webview
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698