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

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

Issue 2609001: Add implementation for WebDevToolsAgentClient::debuggerScriptSource.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | webkit/tools/test_shell/test_shell_devtools_agent.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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
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: 115 case IDR_DEVTOOLS_INJECT_WEBKIT_JS:
116 case IDR_DEVTOOLS_INJECT_DISPATCH_JS: 116 case IDR_DEVTOOLS_INJECT_DISPATCH_JS:
117 case IDR_DEVTOOLS_DEBUGGER_SCRIPT_JS:
117 return NetResourceProvider(resource_id); 118 return NetResourceProvider(resource_id);
118 119
119 default: 120 default:
120 break; 121 break;
121 } 122 }
122 123
123 return base::StringPiece(); 124 return base::StringPiece();
124 } 125 }
125 126
126 } // namespace webkit_glue 127 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | webkit/tools/test_shell/test_shell_devtools_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698