| 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 "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 <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <commdlg.h> | 9 #include <commdlg.h> |
| 10 #include <objbase.h> | 10 #include <objbase.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/memory_debug.h" | 16 #include "base/memory_debug.h" |
| 16 #include "base/message_loop.h" | 17 #include "base/message_loop.h" |
| 17 #include "base/path_service.h" | 18 #include "base/path_service.h" |
| 18 #include "base/resource_util.h" | 19 #include "base/resource_util.h" |
| 19 #include "base/stack_container.h" | 20 #include "base/stack_container.h" |
| 20 #include "base/string_piece.h" | 21 #include "base/string_piece.h" |
| 21 #include "base/string_util.h" | 22 #include "base/string_util.h" |
| 22 #include "base/trace_event.h" | 23 #include "base/trace_event.h" |
| 23 #include "base/win_util.h" | 24 #include "base/win_util.h" |
| 24 #include "breakpad/src/client/windows/handler/exception_handler.h" | 25 #include "breakpad/src/client/windows/handler/exception_handler.h" |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 | 758 |
| 758 bool EnsureFontLoaded(HFONT font) { | 759 bool EnsureFontLoaded(HFONT font) { |
| 759 return true; | 760 return true; |
| 760 } | 761 } |
| 761 | 762 |
| 762 bool DownloadUrl(const std::string& url, HWND caller_window) { | 763 bool DownloadUrl(const std::string& url, HWND caller_window) { |
| 763 return false; | 764 return false; |
| 764 } | 765 } |
| 765 | 766 |
| 766 } // namespace webkit_glue | 767 } // namespace webkit_glue |
| OLD | NEW |