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

Side by Side Diff: webkit/tools/test_shell/test_worker/test_worker_main.cc

Issue 113069: Content-Dispositon handling fix #2. Still WiP. Uploading as a check point.... Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 | « webkit/tools/test_shell/simple_resource_loader_bridge.cc ('k') | no next file » | 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) 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 "config.h" 5 #include "config.h"
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/gfx/native_widget_types.h" 8 #include "base/gfx/native_widget_types.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 const GURL& url, 124 const GURL& url,
125 const GURL& policy_url, 125 const GURL& policy_url,
126 const GURL& referrer, 126 const GURL& referrer,
127 const std::string& frame_origin, 127 const std::string& frame_origin,
128 const std::string& main_frame_origin, 128 const std::string& main_frame_origin,
129 const std::string& headers, 129 const std::string& headers,
130 int load_flags, 130 int load_flags,
131 int requestor_pid, 131 int requestor_pid,
132 ResourceType::Type request_type, 132 ResourceType::Type request_type,
133 int app_cache_context_id, 133 int app_cache_context_id,
134 int routing_id) { 134 int routing_id,
135 const std::string& fallback_charset) {
135 return NULL; 136 return NULL;
136 } 137 }
137 138
138 string16 GetLocalizedString(int message_id) { 139 string16 GetLocalizedString(int message_id) {
139 return EmptyString16(); 140 return EmptyString16();
140 } 141 }
141 142
142 StringPiece GetDataResource(int resource_id) { 143 StringPiece GetDataResource(int resource_id) {
143 return StringPiece(); 144 return StringPiece();
144 } 145 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 bool DownloadUrl(const std::string& url, HWND caller_window) { 218 bool DownloadUrl(const std::string& url, HWND caller_window) {
218 return false; 219 return false;
219 } 220 }
220 #endif 221 #endif
221 222
222 } // namespace webkit_glue 223 } // namespace webkit_glue
223 224
224 #if defined(COMPILER_GCC) 225 #if defined(COMPILER_GCC)
225 #pragma GCC visibility pop 226 #pragma GCC visibility pop
226 #endif 227 #endif
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/simple_resource_loader_bridge.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698