| 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 | |
| 13 | 12 |
| 14 #include "base/command_line.h" | 13 #include "base/command_line.h" |
| 15 #include "base/file_util.h" | 14 #include "base/file_util.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_piece.h" | 20 #include "base/string_piece.h" |
| 22 #include "base/trace_event.h" | 21 #include "base/trace_event.h" |
| (...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 | 803 |
| 805 bool EnsureFontLoaded(HFONT font) { | 804 bool EnsureFontLoaded(HFONT font) { |
| 806 return true; | 805 return true; |
| 807 } | 806 } |
| 808 | 807 |
| 809 bool DownloadUrl(const std::string& url, HWND caller_window) { | 808 bool DownloadUrl(const std::string& url, HWND caller_window) { |
| 810 return false; | 809 return false; |
| 811 } | 810 } |
| 812 | 811 |
| 813 } // namespace webkit_glue | 812 } // namespace webkit_glue |
| OLD | NEW |