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

Unified Diff: chrome/browser/importer/external_process_importer_bridge.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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
« no previous file with comments | « chrome/browser/history/top_sites.h ('k') | chrome/browser/importer/firefox_importer_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/external_process_importer_bridge.h
===================================================================
--- chrome/browser/importer/external_process_importer_bridge.h (revision 92173)
+++ chrome/browser/importer/external_process_importer_bridge.h (working copy)
@@ -14,10 +14,13 @@
#include "chrome/browser/importer/importer_bridge.h"
#include "chrome/browser/importer/profile_writer.h"
-class DictionaryValue;
class GURL;
class ProfileImportThread;
+namespace base {
+class DictionaryValue;
+}
+
// When the importer is run in an external process, the bridge is effectively
// split in half by the IPC infrastructure. The external bridge receives data
// and notifications from the importer, and sends it across IPC. The
@@ -26,7 +29,7 @@
class ExternalProcessImporterBridge : public ImporterBridge {
public:
ExternalProcessImporterBridge(ProfileImportThread* profile_import_thread,
- const DictionaryValue& localized_strings);
+ const base::DictionaryValue& localized_strings);
// Begin ImporterBridge implementation:
virtual void AddBookmarks(
@@ -68,7 +71,7 @@
// Holds strings needed by the external importer because the resource
// bundle isn't available to the external process.
- scoped_ptr<DictionaryValue> localized_strings_;
+ scoped_ptr<base::DictionaryValue> localized_strings_;
DISALLOW_COPY_AND_ASSIGN(ExternalProcessImporterBridge);
};
« no previous file with comments | « chrome/browser/history/top_sites.h ('k') | chrome/browser/importer/firefox_importer_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698