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

Unified Diff: webkit/support/simple_database_system.h

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: webkit/support/simple_database_system.h
diff --git a/webkit/support/simple_database_system.h b/webkit/support/simple_database_system.h
index 8a40c3fd631cf1c63370386b7372a63f76bbf003..4028dbe2de701a6e344d257ebfe1b6dab70ff4ee 100644
--- a/webkit/support/simple_database_system.h
+++ b/webkit/support/simple_database_system.h
@@ -10,7 +10,7 @@
#include "base/hash_tables.h"
#include "base/memory/ref_counted.h"
#include "base/platform_file.h"
-#include "base/string16.h"
+#include "base/string16.h.h"
#include "base/synchronization/lock.h"
#include "base/threading/thread.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabaseObserver.h"
@@ -39,11 +39,12 @@ class SimpleDatabaseSystem : public webkit_database::DatabaseTracker::Observer,
// SQLite VFS related methods, these are called on webcore's
// background database threads via the WebKitPlatformSupport impl.
- base::PlatformFile OpenFile(const string16& vfs_file_name, int desired_flags);
- int DeleteFile(const string16& vfs_file_name, bool sync_dir);
- uint32 GetFileAttributes(const string16& vfs_file_name);
- int64 GetFileSize(const string16& vfs_file_name);
- int64 GetSpaceAvailable(const string16& origin_identifier);
+ base::PlatformFile OpenFile(const base::string16& vfs_file_name,
+ int desired_flags);
+ int DeleteFile(const base::string16& vfs_file_name, bool sync_dir);
+ uint32 GetFileAttributes(const base::string16& vfs_file_name);
+ int64 GetFileSize(const base::string16& vfs_file_name);
+ int64 GetSpaceAvailable(const base::string16& origin_identifier);
// For use by testRunner, called on the main thread.
void ClearAllDatabases();
@@ -51,36 +52,36 @@ class SimpleDatabaseSystem : public webkit_database::DatabaseTracker::Observer,
private:
// Used by our WebDatabaseObserver impl, only called on the db_thread
- void DatabaseOpened(const string16& origin_identifier,
- const string16& database_name,
- const string16& description,
+ void DatabaseOpened(const base::string16& origin_identifier,
+ const base::string16& database_name,
+ const base::string16& description,
int64 estimated_size);
- void DatabaseModified(const string16& origin_identifier,
- const string16& database_name);
- void DatabaseClosed(const string16& origin_identifier,
- const string16& database_name);
+ void DatabaseModified(const base::string16& origin_identifier,
+ const base::string16& database_name);
+ void DatabaseClosed(const base::string16& origin_identifier,
+ const base::string16& database_name);
// DatabaseTracker::Observer implementation
- virtual void OnDatabaseSizeChanged(const string16& origin_identifier,
- const string16& database_name,
+ virtual void OnDatabaseSizeChanged(const base::string16& origin_identifier,
+ const base::string16& database_name,
int64 database_size) OVERRIDE;
virtual void OnDatabaseScheduledForDeletion(
- const string16& origin_identifier,
- const string16& database_name) OVERRIDE;
+ const base::string16& origin_identifier,
+ const base::string16& database_name) OVERRIDE;
// Used by our public SQLite VFS methods, only called on the db_thread.
- void VfsOpenFile(const string16& vfs_file_name, int desired_flags,
+ void VfsOpenFile(const base::string16& vfs_file_name, int desired_flags,
base::PlatformFile* result, base::WaitableEvent* done_event);
- void VfsDeleteFile(const string16& vfs_file_name, bool sync_dir,
+ void VfsDeleteFile(const base::string16& vfs_file_name, bool sync_dir,
int* result, base::WaitableEvent* done_event);
- void VfsGetFileAttributes(const string16& vfs_file_name,
+ void VfsGetFileAttributes(const base::string16& vfs_file_name,
uint32* result, base::WaitableEvent* done_event);
- void VfsGetFileSize(const string16& vfs_file_name,
+ void VfsGetFileSize(const base::string16& vfs_file_name,
int64* result, base::WaitableEvent* done_event);
- void VfsGetSpaceAvailable(const string16& origin_identifier,
+ void VfsGetSpaceAvailable(const base::string16& origin_identifier,
int64* result, base::WaitableEvent* done_event);
- base::FilePath GetFullFilePathForVfsFile(const string16& vfs_file_name);
+ base::FilePath GetFullFilePathForVfsFile(const base::string16& vfs_file_name);
void ResetTracker();
void ThreadCleanup(base::WaitableEvent* done_event);

Powered by Google App Engine
This is Rietveld 408576698