OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <windows.h> | 5 #include <windows.h> |
6 #include <atlbase.h> | 6 #include <atlbase.h> |
7 #include <commdlg.h> | 7 #include <commdlg.h> |
8 #include <objbase.h> | 8 #include <objbase.h> |
9 #include <shlwapi.h> | 9 #include <shlwapi.h> |
10 #include <wininet.h> | 10 #include <wininet.h> |
11 | 11 |
12 #include "webkit/tools/test_shell/test_shell.h" | 12 #include "webkit/tools/test_shell/test_shell.h" |
13 | 13 |
14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
15 #include "base/gfx/bitmap_platform_device.h" | |
16 #include "base/memory_debug.h" | 15 #include "base/memory_debug.h" |
17 #include "base/message_loop.h" | 16 #include "base/message_loop.h" |
18 #include "base/path_service.h" | 17 #include "base/path_service.h" |
19 #include "base/resource_util.h" | 18 #include "base/resource_util.h" |
20 #include "base/stack_container.h" | 19 #include "base/stack_container.h" |
21 #include "base/string_util.h" | 20 #include "base/string_util.h" |
22 #include "base/trace_event.h" | 21 #include "base/trace_event.h" |
23 #include "base/win_util.h" | 22 #include "base/win_util.h" |
24 #include "breakpad/src/client/windows/handler/exception_handler.h" | 23 #include "breakpad/src/client/windows/handler/exception_handler.h" |
25 #include "net/http/http_network_layer.h" | 24 #include "net/http/http_network_layer.h" |
26 #include "net/url_request/url_request_file_job.h" | 25 #include "net/url_request/url_request_file_job.h" |
| 26 #include "skia/ext/bitmap_platform_device.h" |
27 #include "webkit/glue/webdatasource.h" | 27 #include "webkit/glue/webdatasource.h" |
28 #include "webkit/glue/webframe.h" | 28 #include "webkit/glue/webframe.h" |
29 #include "webkit/glue/webkit_glue.h" | 29 #include "webkit/glue/webkit_glue.h" |
30 #include "webkit/glue/webpreferences.h" | 30 #include "webkit/glue/webpreferences.h" |
31 #include "webkit/glue/webview.h" | 31 #include "webkit/glue/webview.h" |
32 #include "webkit/glue/plugins/plugin_list.h" | 32 #include "webkit/glue/plugins/plugin_list.h" |
33 #include "webkit/tools/test_shell/test_navigation_controller.h" | 33 #include "webkit/tools/test_shell/test_navigation_controller.h" |
34 #include "webkit/tools/test_shell/test_shell_switches.h" | 34 #include "webkit/tools/test_shell/test_shell_switches.h" |
35 | 35 |
36 #define MAX_LOADSTRING 100 | 36 #define MAX_LOADSTRING 100 |
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 | 770 |
771 bool DownloadUrl(const std::string& url, HWND caller_window) { | 771 bool DownloadUrl(const std::string& url, HWND caller_window) { |
772 return false; | 772 return false; |
773 } | 773 } |
774 | 774 |
775 ScreenInfo GetScreenInfo(gfx::ViewHandle window) { | 775 ScreenInfo GetScreenInfo(gfx::ViewHandle window) { |
776 return GetScreenInfoHelper(window); | 776 return GetScreenInfoHelper(window); |
777 } | 777 } |
778 | 778 |
779 } // namespace webkit_glue | 779 } // namespace webkit_glue |
OLD | NEW |