summaryrefslogtreecommitdiffstats
path: root/chrome/utility/importer/importer_creator.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/utility/importer/importer_creator.h')
-rw-r--r--chrome/utility/importer/importer_creator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/utility/importer/importer_creator.h b/chrome/utility/importer/importer_creator.h
index 40e0de5..dc61cd1 100644
--- a/chrome/utility/importer/importer_creator.h
+++ b/chrome/utility/importer/importer_creator.h
@@ -5,6 +5,7 @@
#ifndef CHROME_UTILITY_IMPORTER_IMPORTER_CREATOR_H_
#define CHROME_UTILITY_IMPORTER_IMPORTER_CREATOR_H_
+#include "base/memory/ref_counted.h"
#include "chrome/common/importer/importer_type.h"
class Importer;
@@ -12,7 +13,7 @@ class Importer;
namespace importer {
// Creates an Importer of the specified |type|.
-Importer* CreateImporterByType(ImporterType type);
+scoped_refptr<Importer> CreateImporterByType(ImporterType type);
} // namespace importer