| 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 CHROME_TEST_BASE_UI_TEST_UTILS_H_ | 5 #ifndef CHROME_TEST_BASE_UI_TEST_UTILS_H_ |
| 6 #define CHROME_TEST_BASE_UI_TEST_UTILS_H_ | 6 #define CHROME_TEST_BASE_UI_TEST_UTILS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <queue> | 10 #include <queue> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 class Browser; | 44 class Browser; |
| 45 class CommandLine; | 45 class CommandLine; |
| 46 class ExtensionAction; | 46 class ExtensionAction; |
| 47 class FilePath; | 47 class FilePath; |
| 48 class GURL; | 48 class GURL; |
| 49 class HistoryService; | 49 class HistoryService; |
| 50 class MessageLoop; | 50 class MessageLoop; |
| 51 class Profile; | 51 class Profile; |
| 52 class ScopedTempDir; | 52 class ScopedTempDir; |
| 53 class SkBitmap; | 53 class SkBitmap; |
| 54 class TabContentsWrapper; | 54 class TabContents; |
| 55 typedef TabContents TabContentsWrapper; |
| 55 class TemplateURLService; | 56 class TemplateURLService; |
| 56 | 57 |
| 57 namespace browser { | 58 namespace browser { |
| 58 struct NavigateParams; | 59 struct NavigateParams; |
| 59 } | 60 } |
| 60 | 61 |
| 61 namespace content { | 62 namespace content { |
| 62 class RenderViewHost; | 63 class RenderViewHost; |
| 63 class RenderWidgetHost; | 64 class RenderWidgetHost; |
| 64 class WebContents; | 65 class WebContents; |
| (...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 // ui_controls_linux.cc and ui_controls_mac.cc | 694 // ui_controls_linux.cc and ui_controls_mac.cc |
| 694 void ClickTask(ui_controls::MouseButton button, | 695 void ClickTask(ui_controls::MouseButton button, |
| 695 int state, | 696 int state, |
| 696 const base::Closure& followup); | 697 const base::Closure& followup); |
| 697 | 698 |
| 698 } // namespace internal | 699 } // namespace internal |
| 699 | 700 |
| 700 } // namespace ui_test_utils | 701 } // namespace ui_test_utils |
| 701 | 702 |
| 702 #endif // CHROME_TEST_BASE_UI_TEST_UTILS_H_ | 703 #endif // CHROME_TEST_BASE_UI_TEST_UTILS_H_ |
| OLD | NEW |