| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 11 matching lines...) Expand all Loading... |
| 22 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
| 23 #include "content/public/browser/notification_details.h" | 23 #include "content/public/browser/notification_details.h" |
| 24 #include "content/public/browser/notification_source.h" | 24 #include "content/public/browser/notification_source.h" |
| 25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
| 26 #include "ui/base/keycodes/keyboard_codes.h" | 26 #include "ui/base/keycodes/keyboard_codes.h" |
| 27 #include "ui/gfx/native_widget_types.h" | 27 #include "ui/gfx/native_widget_types.h" |
| 28 #include "webkit/glue/window_open_disposition.h" | 28 #include "webkit/glue/window_open_disposition.h" |
| 29 | 29 |
| 30 class AppModalDialog; | 30 class AppModalDialog; |
| 31 class BookmarkModel; | 31 class BookmarkModel; |
| 32 class BookmarkNode; | |
| 33 class Browser; | 32 class Browser; |
| 34 class CommandLine; | 33 class CommandLine; |
| 35 class DownloadManager; | |
| 36 class ExtensionAction; | 34 class ExtensionAction; |
| 37 class FilePath; | 35 class FilePath; |
| 38 class GURL; | 36 class GURL; |
| 39 class MessageLoop; | 37 class MessageLoop; |
| 40 class NavigationController; | |
| 41 class Profile; | 38 class Profile; |
| 42 class RenderViewHost; | 39 class RenderViewHost; |
| 43 class RenderWidgetHost; | 40 class RenderWidgetHost; |
| 44 class ScopedTempDir; | 41 class ScopedTempDir; |
| 45 class SkBitmap; | 42 class SkBitmap; |
| 46 class TabContents; | 43 class TabContents; |
| 47 class TabContentsWrapper; | 44 class TabContentsWrapper; |
| 48 class TemplateURLService; | 45 class TemplateURLService; |
| 49 | 46 |
| 50 namespace browser { | 47 namespace browser { |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 554 |
| 558 // Takes a snapshot of the entire page, according to the width and height | 555 // Takes a snapshot of the entire page, according to the width and height |
| 559 // properties of the DOM's document. Returns true on success. DOMAutomation | 556 // properties of the DOM's document. Returns true on success. DOMAutomation |
| 560 // must be enabled. | 557 // must be enabled. |
| 561 bool TakeEntirePageSnapshot(RenderViewHost* rvh, | 558 bool TakeEntirePageSnapshot(RenderViewHost* rvh, |
| 562 SkBitmap* bitmap) WARN_UNUSED_RESULT; | 559 SkBitmap* bitmap) WARN_UNUSED_RESULT; |
| 563 | 560 |
| 564 } // namespace ui_test_utils | 561 } // namespace ui_test_utils |
| 565 | 562 |
| 566 #endif // CHROME_TEST_BASE_UI_TEST_UTILS_H_ | 563 #endif // CHROME_TEST_BASE_UI_TEST_UTILS_H_ |
| OLD | NEW |