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 #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> |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "grit/webkit_resources.h" | 25 #include "grit/webkit_resources.h" |
26 #include "grit/webkit_chromium_resources.h" | 26 #include "grit/webkit_chromium_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 "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
32 #include "ui/base/win/hwnd_util.h" | 32 #include "ui/base/win/hwnd_util.h" |
33 #include "webkit/glue/webkit_glue.h" | 33 #include "webkit/glue/webkit_glue.h" |
34 #include "webkit/glue/webpreferences.h" | 34 #include "webkit/glue/webpreferences.h" |
35 #include "webkit/glue/plugins/plugin_list.h" | 35 #include "webkit/plugins/npapi/plugin_list.h" |
36 #include "webkit/tools/test_shell/resource.h" | 36 #include "webkit/tools/test_shell/resource.h" |
37 #include "webkit/tools/test_shell/test_navigation_controller.h" | 37 #include "webkit/tools/test_shell/test_navigation_controller.h" |
38 #include "webkit/tools/test_shell/test_shell_devtools_agent.h" | 38 #include "webkit/tools/test_shell/test_shell_devtools_agent.h" |
39 #include "webkit/tools/test_shell/test_shell_switches.h" | 39 #include "webkit/tools/test_shell/test_shell_switches.h" |
40 #include "webkit/tools/test_shell/test_webview_delegate.h" | 40 #include "webkit/tools/test_shell/test_webview_delegate.h" |
41 | 41 |
42 using WebKit::WebWidget; | 42 using WebKit::WebWidget; |
43 | 43 |
44 #define MAX_LOADSTRING 100 | 44 #define MAX_LOADSTRING 100 |
45 | 45 |
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 | 734 |
735 bool EnsureFontLoaded(HFONT font) { | 735 bool EnsureFontLoaded(HFONT font) { |
736 return true; | 736 return true; |
737 } | 737 } |
738 | 738 |
739 bool DownloadUrl(const std::string& url, HWND caller_window) { | 739 bool DownloadUrl(const std::string& url, HWND caller_window) { |
740 return false; | 740 return false; |
741 } | 741 } |
742 | 742 |
743 } // namespace webkit_glue | 743 } // namespace webkit_glue |
OLD | NEW |