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

Side by Side Diff: webkit/appcache/appcache_interfaces.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/appcache/appcache_disk_cache.cc ('k') | webkit/appcache/appcache_interfaces.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_ 5 #ifndef WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_
6 #define WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_ 6 #define WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 // any dependencies on the chrome library, so we can't use them in here. 162 // any dependencies on the chrome library, so we can't use them in here.
163 extern const char kHttpScheme[]; 163 extern const char kHttpScheme[];
164 extern const char kHttpsScheme[]; 164 extern const char kHttpsScheme[];
165 extern const char kHttpGETMethod[]; 165 extern const char kHttpGETMethod[];
166 extern const char kHttpHEADMethod[]; 166 extern const char kHttpHEADMethod[];
167 167
168 bool IsSchemeSupported(const GURL& url); 168 bool IsSchemeSupported(const GURL& url);
169 bool IsMethodSupported(const std::string& method); 169 bool IsMethodSupported(const std::string& method);
170 bool IsSchemeAndMethodSupported(const net::URLRequest* request); 170 bool IsSchemeAndMethodSupported(const net::URLRequest* request);
171 171
172 WEBKIT_STORAGE_EXPORT extern const FilePath::CharType kAppCacheDatabaseName[]; 172 WEBKIT_STORAGE_EXPORT extern const base::FilePath::CharType
173 kAppCacheDatabaseName[];
173 174
174 } // namespace 175 } // namespace
175 176
176 #endif // WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_ 177 #endif // WEBKIT_APPCACHE_APPCACHE_INTERFACES_H_
OLDNEW
« no previous file with comments | « webkit/appcache/appcache_disk_cache.cc ('k') | webkit/appcache/appcache_interfaces.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698