OLD | NEW |
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 #ifndef ANDROID_WEBVIEW_RENDERER_AW_RENDER_VIEW_EXT_H_ | 5 #ifndef ANDROID_WEBVIEW_RENDERER_AW_RENDER_VIEW_EXT_H_ |
6 #define ANDROID_WEBVIEW_RENDERER_AW_RENDER_VIEW_EXT_H_ | 6 #define ANDROID_WEBVIEW_RENDERER_AW_RENDER_VIEW_EXT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
11 #include "content/public/renderer/render_view_observer.h" | 11 #include "content/public/renderer/render_view_observer.h" |
12 #include "third_party/skia/include/core/SkColor.h" | 12 #include "third_party/skia/include/core/SkColor.h" |
13 #include "ui/gfx/geometry/point_f.h" | 13 #include "ui/gfx/geometry/point_f.h" |
| 14 #include "ui/gfx/geometry/size.h" |
14 #include "ui/gfx/geometry/size_f.h" | 15 #include "ui/gfx/geometry/size_f.h" |
15 #include "ui/gfx/size.h" | |
16 | 16 |
17 namespace blink { | 17 namespace blink { |
18 | 18 |
19 class WebNode; | 19 class WebNode; |
20 class WebURL; | 20 class WebURL; |
21 | 21 |
22 } // namespace blink | 22 } // namespace blink |
23 | 23 |
24 namespace android_webview { | 24 namespace android_webview { |
25 | 25 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 gfx::Size last_sent_contents_size_; | 65 gfx::Size last_sent_contents_size_; |
66 base::OneShotTimer<AwRenderViewExt> check_contents_size_timer_; | 66 base::OneShotTimer<AwRenderViewExt> check_contents_size_timer_; |
67 | 67 |
68 DISALLOW_COPY_AND_ASSIGN(AwRenderViewExt); | 68 DISALLOW_COPY_AND_ASSIGN(AwRenderViewExt); |
69 }; | 69 }; |
70 | 70 |
71 } // namespace android_webview | 71 } // namespace android_webview |
72 | 72 |
73 #endif // ANDROID_WEBVIEW_RENDERER_AW_RENDER_VIEW_EXT_H_ | 73 #endif // ANDROID_WEBVIEW_RENDERER_AW_RENDER_VIEW_EXT_H_ |
OLD | NEW |