Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: webkit/support/platform_support_win.cc

Issue 3180017: DevTools: remove injected script from resources. (Closed)
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | webkit/support/webkit_support.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | webkit/support/webkit_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698