Index: chrome/utility/profile_import_handler.cc |
diff --git a/chrome/utility/profile_import_handler.cc b/chrome/utility/profile_import_handler.cc |
index 457269db73c1af2fe79b6bcc4e5367c07f56bd99..bdc43350457d512768606f0e3a9f5861fb4bba1d 100644 |
--- a/chrome/utility/profile_import_handler.cc |
+++ b/chrome/utility/profile_import_handler.cc |
@@ -14,7 +14,13 @@ |
#include "chrome/utility/importer/importer_creator.h" |
#include "content/public/utility/utility_thread.h" |
-namespace chrome { |
+namespace { |
+ |
+bool Send(IPC::Message* message) { |
+ return content::UtilityThread::Get()->Send(message); |
+} |
+ |
+} // namespace |
ProfileImportHandler::ProfileImportHandler() : items_to_import_(0) {} |
@@ -83,10 +89,3 @@ void ProfileImportHandler::ImporterCleanup() { |
import_thread_.reset(); |
content::UtilityThread::Get()->ReleaseProcessIfNeeded(); |
} |
- |
-// static |
-bool ProfileImportHandler::Send(IPC::Message* message) { |
- return content::UtilityThread::Get()->Send(message); |
-} |
- |
-} // namespace chrome |