OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/support/platform_support.h" | 5 #include "webkit/support/platform_support.h" |
6 | 6 |
7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 case IDR_SEARCH_MAGNIFIER: | 105 case IDR_SEARCH_MAGNIFIER: |
106 case IDR_SEARCH_MAGNIFIER_RESULTS: | 106 case IDR_SEARCH_MAGNIFIER_RESULTS: |
107 case IDR_MEDIA_PAUSE_BUTTON: | 107 case IDR_MEDIA_PAUSE_BUTTON: |
108 case IDR_MEDIA_PLAY_BUTTON: | 108 case IDR_MEDIA_PLAY_BUTTON: |
109 case IDR_MEDIA_PLAY_BUTTON_DISABLED: | 109 case IDR_MEDIA_PLAY_BUTTON_DISABLED: |
110 case IDR_MEDIA_SOUND_FULL_BUTTON: | 110 case IDR_MEDIA_SOUND_FULL_BUTTON: |
111 case IDR_MEDIA_SOUND_NONE_BUTTON: | 111 case IDR_MEDIA_SOUND_NONE_BUTTON: |
112 case IDR_MEDIA_SOUND_DISABLED: | 112 case IDR_MEDIA_SOUND_DISABLED: |
113 case IDR_MEDIA_SLIDER_THUMB: | 113 case IDR_MEDIA_SLIDER_THUMB: |
114 case IDR_MEDIA_VOLUME_SLIDER_THUMB: | 114 case IDR_MEDIA_VOLUME_SLIDER_THUMB: |
115 case IDR_DEVTOOLS_INJECT_WEBKIT_JS: | |
116 case IDR_DEVTOOLS_DEBUGGER_SCRIPT_JS: | 115 case IDR_DEVTOOLS_DEBUGGER_SCRIPT_JS: |
117 return NetResourceProvider(resource_id); | 116 return NetResourceProvider(resource_id); |
118 | 117 |
119 default: | 118 default: |
120 break; | 119 break; |
121 } | 120 } |
122 | 121 |
123 return base::StringPiece(); | 122 return base::StringPiece(); |
124 } | 123 } |
125 | 124 |
126 } // namespace webkit_glue | 125 } // namespace webkit_glue |
OLD | NEW |