summaryrefslogtreecommitdiffstats
path: root/chrome/browser/first_run/first_run.cc
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-16 21:57:52 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-16 21:57:52 +0000
commit946b4ee048350f35983771dfa928863d2af7177b (patch)
tree52343cf4354c6e675829b23f01ae5b4183d3349b /chrome/browser/first_run/first_run.cc
parent23deabb766b17dbce4cfa44b7dac8c858d0a3ad7 (diff)
downloadchromium_src-946b4ee048350f35983771dfa928863d2af7177b.zip
chromium_src-946b4ee048350f35983771dfa928863d2af7177b.tar.gz
chromium_src-946b4ee048350f35983771dfa928863d2af7177b.tar.bz2
Move most importer code to chrome/utility/importer
Moves the out-of-process parts from chrome/browser/importer into chrome/utility/importer. The majority here are simple moves, mostly into chrome/utility/importer and a few into chrome/common/importer. A few places required splitting files up to put some in different parts of browser|common|utility. These were: - chrome/browser/favicon ReencodeFavicon -> utility (it depends on Blink, so should only be in child processes) - history::VisitSource as used by ImporterBridge -> new similar enum in importer_data_types that's remapped once it's in the browser process - LogImporterUseToMetrics split out to importer_uma in browser. Adds chrome/utility/importer/OWNERS identical to chrome/browser/importer. Existing DEPS disallows both utility->browser and browser->utility. TBR=gab@chromium.org, jam@chromium.org, joth@chromium.org, jschuh@chromium.org, thestig@chromium.org BUG=254672,237249 Review URL: https://codereview.chromium.org/18501013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211858 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run/first_run.cc')
-rw-r--r--chrome/browser/first_run/first_run.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc
index df29d21..9cb785b 100644
--- a/chrome/browser/first_run/first_run.cc
+++ b/chrome/browser/first_run/first_run.cc
@@ -24,9 +24,9 @@
#include "chrome/browser/first_run/first_run_internal.h"
#include "chrome/browser/google/google_util.h"
#include "chrome/browser/importer/external_process_importer_host.h"
-#include "chrome/browser/importer/importer_creator.h"
#include "chrome/browser/importer/importer_list.h"
#include "chrome/browser/importer/importer_progress_observer.h"
+#include "chrome/browser/importer/importer_uma.h"
#include "chrome/browser/importer/profile_writer.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/search_engines/template_url_service.h"