| 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 CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ |
| 6 #define CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ | 6 #define CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 namespace base { | 28 namespace base { |
| 29 class FieldTrialList; | 29 class FieldTrialList; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 namespace scheduler { | 33 namespace scheduler { |
| 34 class RendererScheduler; | 34 class RendererScheduler; |
| 35 } | 35 } |
| 36 class WebInputElement; | 36 class WebInputElement; |
| 37 class WebMouseEvent; |
| 37 class WebWidget; | 38 class WebWidget; |
| 38 } | 39 } |
| 39 | 40 |
| 40 namespace gfx { | 41 namespace gfx { |
| 41 class Rect; | 42 class Rect; |
| 42 } | 43 } |
| 43 | 44 |
| 44 namespace content { | 45 namespace content { |
| 45 class ContentBrowserClient; | 46 class ContentBrowserClient; |
| 46 class ContentClient; | 47 class ContentClient; |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 std::unique_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_; | 216 std::unique_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool_; |
| 216 #endif | 217 #endif |
| 217 | 218 |
| 218 private: | 219 private: |
| 219 void GoToOffset(int offset, const GURL& url, const PageState& state); | 220 void GoToOffset(int offset, const GURL& url, const PageState& state); |
| 220 }; | 221 }; |
| 221 | 222 |
| 222 } // namespace content | 223 } // namespace content |
| 223 | 224 |
| 224 #endif // CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ | 225 #endif // CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ |
| OLD | NEW |