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

Unified Diff: chrome/common/importer/importer_bridge.h

Issue 105473003: Add explicit base namespace to string16 users. (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
« no previous file with comments | « chrome/common/importer/ie_importer_utils_win.cc ('k') | chrome/common/importer/importer_data_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/importer/importer_bridge.h
diff --git a/chrome/common/importer/importer_bridge.h b/chrome/common/importer/importer_bridge.h
index 8aaf40d550bfb6c4dac9a6636d9eb7fd8e3f273d..c0903ff6f69e051f50b2b40c862483a09d2939d9 100644
--- a/chrome/common/importer/importer_bridge.h
+++ b/chrome/common/importer/importer_bridge.h
@@ -37,7 +37,7 @@ class ImporterBridge : public base::RefCountedThreadSafe<ImporterBridge> {
virtual void AddBookmarks(
const std::vector<ImportedBookmarkEntry>& bookmarks,
- const string16& first_folder_name) = 0;
+ const base::string16& first_folder_name) = 0;
virtual void AddHomePage(const GURL& home_page) = 0;
@@ -81,7 +81,7 @@ class ImporterBridge : public base::RefCountedThreadSafe<ImporterBridge> {
// this calls the set of strings we've ported over to the external process.
// It's good to avoid having to create a separate ResourceBundle for the
// external import process, since the importer only needs a few strings.
- virtual string16 GetLocalizedString(int message_id) = 0;
+ virtual base::string16 GetLocalizedString(int message_id) = 0;
protected:
friend class base::RefCountedThreadSafe<ImporterBridge>;
« no previous file with comments | « chrome/common/importer/ie_importer_utils_win.cc ('k') | chrome/common/importer/importer_data_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698