| 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> |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 case IDR_SEARCH_MAGNIFIER: | 782 case IDR_SEARCH_MAGNIFIER: |
| 783 case IDR_SEARCH_MAGNIFIER_RESULTS: | 783 case IDR_SEARCH_MAGNIFIER_RESULTS: |
| 784 case IDR_MEDIA_PAUSE_BUTTON: | 784 case IDR_MEDIA_PAUSE_BUTTON: |
| 785 case IDR_MEDIA_PLAY_BUTTON: | 785 case IDR_MEDIA_PLAY_BUTTON: |
| 786 case IDR_MEDIA_PLAY_BUTTON_DISABLED: | 786 case IDR_MEDIA_PLAY_BUTTON_DISABLED: |
| 787 case IDR_MEDIA_SOUND_FULL_BUTTON: | 787 case IDR_MEDIA_SOUND_FULL_BUTTON: |
| 788 case IDR_MEDIA_SOUND_NONE_BUTTON: | 788 case IDR_MEDIA_SOUND_NONE_BUTTON: |
| 789 case IDR_MEDIA_SOUND_DISABLED: | 789 case IDR_MEDIA_SOUND_DISABLED: |
| 790 case IDR_MEDIA_SLIDER_THUMB: | 790 case IDR_MEDIA_SLIDER_THUMB: |
| 791 case IDR_MEDIA_VOLUME_SLIDER_THUMB: | 791 case IDR_MEDIA_VOLUME_SLIDER_THUMB: |
| 792 case IDR_DEVTOOLS_INJECT_WEBKIT_JS: | |
| 793 case IDR_DEVTOOLS_DEBUGGER_SCRIPT_JS: | 792 case IDR_DEVTOOLS_DEBUGGER_SCRIPT_JS: |
| 794 case IDR_INPUT_SPEECH: | 793 case IDR_INPUT_SPEECH: |
| 795 case IDR_INPUT_SPEECH_RECORDING: | 794 case IDR_INPUT_SPEECH_RECORDING: |
| 796 case IDR_INPUT_SPEECH_WAITING: | 795 case IDR_INPUT_SPEECH_WAITING: |
| 797 return NetResourceProvider(resource_id); | 796 return NetResourceProvider(resource_id); |
| 798 | 797 |
| 799 default: | 798 default: |
| 800 break; | 799 break; |
| 801 } | 800 } |
| 802 | 801 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 813 | 812 |
| 814 bool EnsureFontLoaded(HFONT font) { | 813 bool EnsureFontLoaded(HFONT font) { |
| 815 return true; | 814 return true; |
| 816 } | 815 } |
| 817 | 816 |
| 818 bool DownloadUrl(const std::string& url, HWND caller_window) { | 817 bool DownloadUrl(const std::string& url, HWND caller_window) { |
| 819 return false; | 818 return false; |
| 820 } | 819 } |
| 821 | 820 |
| 822 } // namespace webkit_glue | 821 } // namespace webkit_glue |
| OLD | NEW |