diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 00:32:13 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 00:32:13 +0000 |
commit | b7fa499af1ee55a31f13ca6ec87fd55b592df066 (patch) | |
tree | ec931649ee303084ed274acb8ba3b6160e182d07 /chrome/utility | |
parent | bda73911e53ad6e6e059231b6fb97ddac186bea8 (diff) | |
download | chromium_src-b7fa499af1ee55a31f13ca6ec87fd55b592df066.zip chromium_src-b7fa499af1ee55a31f13ca6ec87fd55b592df066.tar.gz chromium_src-b7fa499af1ee55a31f13ca6ec87fd55b592df066.tar.bz2 |
Move importer messages to common
Goal is moving profile_import_process_messages to chrome/common so they
can be used to communicate between the utility and browser. This
also requires moving some of the simple structs/enums that are used in
messages.
(a few gypi updates that got missed in previous CLs too)
TBR=jschuh@chromium.org
R=sky@chromium.org
BUG=254672
Review URL: https://chromiumcodereview.appspot.com/18555005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209828 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/utility')
-rw-r--r-- | chrome/utility/profile_import_handler.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/utility/profile_import_handler.cc b/chrome/utility/profile_import_handler.cc index 79cf0be..99ab420 100644 --- a/chrome/utility/profile_import_handler.cc +++ b/chrome/utility/profile_import_handler.cc @@ -10,7 +10,8 @@ #include "base/threading/thread.h" #include "chrome/browser/importer/external_process_importer_bridge.h" #include "chrome/browser/importer/importer.h" -#include "chrome/browser/importer/profile_import_process_messages.h" +#include "chrome/browser/importer/importer_creator.h" +#include "chrome/common/importer/profile_import_process_messages.h" #include "content/public/utility/utility_thread.h" namespace chrome { |