OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_UI_TEST_UTILS_H_ | 5 #ifndef CHROME_TEST_UI_TEST_UTILS_H_ |
6 #define CHROME_TEST_UI_TEST_UTILS_H_ | 6 #define CHROME_TEST_UI_TEST_UTILS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <queue> | 10 #include <queue> |
11 #include <string> | 11 #include <string> |
12 #include <set> | 12 #include <set> |
13 | 13 |
14 #include "app/keyboard_codes.h" | 14 #include "app/keyboard_codes.h" |
15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
16 #include "base/message_loop.h" | 16 #include "base/message_loop.h" |
17 #include "base/scoped_temp_dir.h" | 17 #include "base/scoped_temp_dir.h" |
18 #include "base/string16.h" | 18 #include "base/string16.h" |
19 #include "chrome/browser/view_ids.h" | 19 #include "chrome/browser/ui/view_ids.h" |
20 #include "chrome/common/notification_observer.h" | 20 #include "chrome/common/notification_observer.h" |
21 #include "chrome/common/notification_registrar.h" | 21 #include "chrome/common/notification_registrar.h" |
22 #include "chrome/common/notification_service.h" | 22 #include "chrome/common/notification_service.h" |
23 #include "chrome/test/automation/dom_element_proxy.h" | 23 #include "chrome/test/automation/dom_element_proxy.h" |
24 #include "gfx/native_widget_types.h" | 24 #include "gfx/native_widget_types.h" |
25 | 25 |
26 class AppModalDialog; | 26 class AppModalDialog; |
27 class BookmarkModel; | 27 class BookmarkModel; |
28 class BookmarkNode; | 28 class BookmarkNode; |
29 class Browser; | 29 class Browser; |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 | 463 |
464 // Takes a snapshot of the entire page, according to the width and height | 464 // Takes a snapshot of the entire page, according to the width and height |
465 // properties of the DOM's document. Returns true on success. DOMAutomation | 465 // properties of the DOM's document. Returns true on success. DOMAutomation |
466 // must be enabled. | 466 // must be enabled. |
467 bool TakeEntirePageSnapshot(RenderViewHost* rvh, | 467 bool TakeEntirePageSnapshot(RenderViewHost* rvh, |
468 SkBitmap* bitmap) WARN_UNUSED_RESULT; | 468 SkBitmap* bitmap) WARN_UNUSED_RESULT; |
469 | 469 |
470 } // namespace ui_test_utils | 470 } // namespace ui_test_utils |
471 | 471 |
472 #endif // CHROME_TEST_UI_TEST_UTILS_H_ | 472 #endif // CHROME_TEST_UI_TEST_UTILS_H_ |
OLD | NEW |