OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "webkit/tools/test_shell/test_shell.h" | 5 #include "webkit/tools/test_shell/test_shell.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <commdlg.h> | 8 #include <commdlg.h> |
9 #include <objbase.h> | 9 #include <objbase.h> |
10 #include <process.h> | 10 #include <process.h> |
11 #include <shlwapi.h> | 11 #include <shlwapi.h> |
12 #include <wininet.h> // For INTERNET_MAX_URL_LENGTH | 12 #include <wininet.h> // For INTERNET_MAX_URL_LENGTH |
13 | 13 |
14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
15 #include "base/file_util.h" | 15 #include "base/file_util.h" |
16 #include "base/memory_debug.h" | 16 #include "base/memory_debug.h" |
17 #include "base/message_loop.h" | 17 #include "base/message_loop.h" |
18 #include "base/path_service.h" | 18 #include "base/path_service.h" |
19 #include "base/resource_util.h" | 19 #include "base/resource_util.h" |
20 #include "base/stack_container.h" | 20 #include "base/stack_container.h" |
21 #include "base/string_piece.h" | 21 #include "base/string_piece.h" |
22 #include "base/string_util.h" | 22 #include "base/string_util.h" |
23 #include "base/trace_event.h" | 23 #include "base/trace_event.h" |
24 #include "base/win_util.h" | 24 #include "base/win_util.h" |
25 #include "breakpad/src/client/windows/handler/exception_handler.h" | 25 #include "breakpad/src/client/windows/handler/exception_handler.h" |
26 #include "grit/webkit_resources.h" | 26 #include "grit/webkit_resources.h" |
27 #include "net/base/net_module.h" | 27 #include "net/base/net_module.h" |
28 #include "net/url_request/url_request_file_job.h" | 28 #include "net/url_request/url_request_file_job.h" |
29 #include "skia/ext/bitmap_platform_device.h" | 29 #include "skia/ext/bitmap_platform_device.h" |
30 #include "webkit/api/public/WebFrame.h" | 30 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
31 #include "webkit/api/public/WebView.h" | 31 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" |
32 #include "webkit/glue/webkit_glue.h" | 32 #include "webkit/glue/webkit_glue.h" |
33 #include "webkit/glue/webpreferences.h" | 33 #include "webkit/glue/webpreferences.h" |
34 #include "webkit/glue/plugins/plugin_list.h" | 34 #include "webkit/glue/plugins/plugin_list.h" |
35 #include "webkit/tools/test_shell/resource.h" | 35 #include "webkit/tools/test_shell/resource.h" |
36 #include "webkit/tools/test_shell/test_navigation_controller.h" | 36 #include "webkit/tools/test_shell/test_navigation_controller.h" |
37 #include "webkit/tools/test_shell/test_shell_switches.h" | 37 #include "webkit/tools/test_shell/test_shell_switches.h" |
38 | 38 |
39 using WebKit::WebWidget; | 39 using WebKit::WebWidget; |
40 | 40 |
41 #define MAX_LOADSTRING 100 | 41 #define MAX_LOADSTRING 100 |
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 | 744 |
745 bool EnsureFontLoaded(HFONT font) { | 745 bool EnsureFontLoaded(HFONT font) { |
746 return true; | 746 return true; |
747 } | 747 } |
748 | 748 |
749 bool DownloadUrl(const std::string& url, HWND caller_window) { | 749 bool DownloadUrl(const std::string& url, HWND caller_window) { |
750 return false; | 750 return false; |
751 } | 751 } |
752 | 752 |
753 } // namespace webkit_glue | 753 } // namespace webkit_glue |
OLD | NEW |