| OLD | NEW |
| 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 #ifndef ANDROID_WEBVIEW_RENDERER_AW_RENDER_FRAME_EXT_H_ | 5 #ifndef ANDROID_WEBVIEW_RENDERER_AW_RENDER_FRAME_EXT_H_ |
| 6 #define ANDROID_WEBVIEW_RENDERER_AW_RENDER_FRAME_EXT_H_ | 6 #define ANDROID_WEBVIEW_RENDERER_AW_RENDER_FRAME_EXT_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "content/public/renderer/render_frame_observer.h" | 9 #include "content/public/renderer/render_frame_observer.h" |
| 10 #include "ui/gfx/geometry/point_f.h" | 10 #include "ui/gfx/geometry/point_f.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 void OnSmoothScroll(int target_x, int target_y, int duration_ms); | 53 void OnSmoothScroll(int target_x, int target_y, int duration_ms); |
| 54 | 54 |
| 55 blink::WebView* GetWebView(); | 55 blink::WebView* GetWebView(); |
| 56 blink::WebFrameWidget* GetWebFrameWidget(); | 56 blink::WebFrameWidget* GetWebFrameWidget(); |
| 57 | 57 |
| 58 url::Origin last_origin_; | 58 url::Origin last_origin_; |
| 59 | 59 |
| 60 DISALLOW_COPY_AND_ASSIGN(AwRenderFrameExt); | 60 DISALLOW_COPY_AND_ASSIGN(AwRenderFrameExt); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } | 63 } // namespace android_webview |
| 64 | 64 |
| 65 #endif // ANDROID_WEBVIEW_RENDERER_AW_RENDER_FRAME_EXT_H_ | 65 #endif // ANDROID_WEBVIEW_RENDERER_AW_RENDER_FRAME_EXT_H_ |
| 66 | 66 |
| 67 | 67 |
| OLD | NEW |