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

Side by Side Diff: webkit/database/database_util.cc

Issue 660113: Reset the default quota limit for extensions to 5MB, but add a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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/database/database_util.h ('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) 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/database/database_util.h" 5 #include "webkit/database/database_util.h"
6 6
7 #include "base/string_util.h" 7 #include "base/string_util.h"
8 #include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h"
9 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
8 #include "webkit/database/database_tracker.h" 10 #include "webkit/database/database_tracker.h"
9 #include "webkit/database/vfs_backend.h" 11 #include "webkit/database/vfs_backend.h"
10 12
11 namespace webkit_database { 13 namespace webkit_database {
12 14
13 bool DatabaseUtil::CrackVfsFileName(const string16& vfs_file_name, 15 bool DatabaseUtil::CrackVfsFileName(const string16& vfs_file_name,
14 string16* origin_identifier, 16 string16* origin_identifier,
15 string16* database_name, 17 string16* database_name,
16 string16* sqlite_suffix) { 18 string16* sqlite_suffix) {
17 // 'vfs_file_name' is of the form <origin_identifier>/<db_name>#<suffix>. 19 // 'vfs_file_name' is of the form <origin_identifier>/<db_name>#<suffix>.
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 full_path = FilePath::FromWStringHack( 59 full_path = FilePath::FromWStringHack(
58 full_path.ToWStringHack() + UTF16ToWide(sqlite_suffix)); 60 full_path.ToWStringHack() + UTF16ToWide(sqlite_suffix));
59 } 61 }
60 // Watch out for directory traversal attempts from a compromised renderer. 62 // Watch out for directory traversal attempts from a compromised renderer.
61 if (full_path.value().find(FILE_PATH_LITERAL("..")) != 63 if (full_path.value().find(FILE_PATH_LITERAL("..")) !=
62 FilePath::StringType::npos) 64 FilePath::StringType::npos)
63 return FilePath(); 65 return FilePath();
64 return full_path; 66 return full_path;
65 } 67 }
66 68
69 string16 DatabaseUtil::GetOriginIdentifier(const GURL& url) {
70 string16 spec = UTF8ToUTF16(url.spec());
71 return WebKit::WebSecurityOrigin::createFromString(spec).databaseIdentifier();
72 }
73
67 } // namespace webkit_database 74 } // namespace webkit_database
OLDNEW
« no previous file with comments | « webkit/database/database_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698