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

Unified Diff: chrome/browser/browsing_data/browsing_data_indexed_db_helper.h

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: chrome/browser/browsing_data/browsing_data_indexed_db_helper.h
diff --git a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h
index bdcd036428b98ffde1bd3ea3537f9d676544cb97..614f24b7b091011b75871835da7db9700bfc6aea 100644
--- a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h
@@ -55,13 +55,13 @@ class CannedBrowsingDataIndexedDBHelper
public:
// Contains information about an indexed database.
struct PendingIndexedDBInfo {
- PendingIndexedDBInfo(const GURL& origin, const string16& name);
+ PendingIndexedDBInfo(const GURL& origin, const base::string16& name);
~PendingIndexedDBInfo();
bool operator<(const PendingIndexedDBInfo& other) const;
GURL origin;
- string16 name;
+ base::string16 name;
};
CannedBrowsingDataIndexedDBHelper();
@@ -74,7 +74,7 @@ class CannedBrowsingDataIndexedDBHelper
// Add a indexed database to the set of canned indexed databases that is
// returned by this helper.
void AddIndexedDB(const GURL& origin,
- const string16& name);
+ const base::string16& name);
// Clear the list of canned indexed databases.
void Reset();

Powered by Google App Engine
This is Rietveld 408576698