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 #include "chrome/test/ui_test_utils.h" | 5 #include "chrome/test/ui_test_utils.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/json/json_reader.h" | 12 #include "base/json/json_reader.h" |
13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
15 #include "base/process_util.h" | 15 #include "base/process_util.h" |
16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
17 #include "base/utf_string_conversions.h" | 17 #include "base/utf_string_conversions.h" |
18 #include "base/values.h" | 18 #include "base/values.h" |
19 #include "chrome/browser/automation/ui_controls.h" | 19 #include "chrome/browser/automation/ui_controls.h" |
20 #include "chrome/browser/browser_list.h" | 20 #include "chrome/browser/browser_list.h" |
21 #include "chrome/browser/browser_process.h" | 21 #include "chrome/browser/browser_process.h" |
22 #include "chrome/browser/browser_window.h" | 22 #include "chrome/browser/browser_window.h" |
23 #include "chrome/browser/dom_operation_notification_details.h" | 23 #include "chrome/browser/dom_operation_notification_details.h" |
24 #include "chrome/browser/download/download_item.h" | 24 #include "chrome/browser/download/download_item.h" |
25 #include "chrome/browser/download/download_manager.h" | 25 #include "chrome/browser/download/download_manager.h" |
26 #include "chrome/browser/profile.h" | 26 #include "chrome/browser/profiles/profile.h" |
27 #include "chrome/browser/renderer_host/render_process_host.h" | 27 #include "chrome/browser/renderer_host/render_process_host.h" |
28 #include "chrome/browser/renderer_host/render_view_host.h" | 28 #include "chrome/browser/renderer_host/render_view_host.h" |
29 #include "chrome/browser/tab_contents/navigation_controller.h" | 29 #include "chrome/browser/tab_contents/navigation_controller.h" |
30 #include "chrome/browser/tab_contents/navigation_entry.h" | 30 #include "chrome/browser/tab_contents/navigation_entry.h" |
31 #include "chrome/browser/tab_contents/tab_contents.h" | 31 #include "chrome/browser/tab_contents/tab_contents.h" |
32 #include "chrome/browser/tab_contents/thumbnail_generator.h" | 32 #include "chrome/browser/tab_contents/thumbnail_generator.h" |
33 #include "chrome/browser/ui/browser.h" | 33 #include "chrome/browser/ui/browser.h" |
34 #include "chrome/common/chrome_paths.h" | 34 #include "chrome/common/chrome_paths.h" |
35 #include "chrome/common/extensions/extension_action.h" | 35 #include "chrome/common/extensions/extension_action.h" |
36 #include "chrome/common/notification_type.h" | 36 #include "chrome/common/notification_type.h" |
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
912 return taker.TakeRenderWidgetSnapshot(rwh, page_size, page_size, bitmap); | 912 return taker.TakeRenderWidgetSnapshot(rwh, page_size, page_size, bitmap); |
913 } | 913 } |
914 | 914 |
915 bool TakeEntirePageSnapshot(RenderViewHost* rvh, SkBitmap* bitmap) { | 915 bool TakeEntirePageSnapshot(RenderViewHost* rvh, SkBitmap* bitmap) { |
916 DCHECK(bitmap); | 916 DCHECK(bitmap); |
917 SnapshotTaker taker; | 917 SnapshotTaker taker; |
918 return taker.TakeEntirePageSnapshot(rvh, bitmap); | 918 return taker.TakeEntirePageSnapshot(rvh, bitmap); |
919 } | 919 } |
920 | 920 |
921 } // namespace ui_test_utils | 921 } // namespace ui_test_utils |
OLD | NEW |