diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-19 17:16:27 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-19 17:16:27 +0000 |
commit | f570bb263968348366860a6ed154745789b8a2d7 (patch) | |
tree | 7204ccf142c84fc93c1ecc850a672f4584d40ca6 /chrome/browser/first_run/first_run_win.cc | |
parent | 1f4a69f9ce242beabfa36223099a12162562f701 (diff) | |
download | chromium_src-f570bb263968348366860a6ed154745789b8a2d7.zip chromium_src-f570bb263968348366860a6ed154745789b8a2d7.tar.gz chromium_src-f570bb263968348366860a6ed154745789b8a2d7.tar.bz2 |
importer: Sort the methods of ImporterHost class according to our c++ style guide.
- Remove another unnecessary include.
- Make the order of methods in the importer_host.cc match the order in the header file.
- And impose the following order to the class:
class Foo {
each public/protected/private section:
typedefs;
enums;
static constants;
ctors;
dtors;
methods;
overridden virtual methods;
data members;
};
R=avi@chromium.org
BUG=68682
TEST=None
Review URL: http://codereview.chromium.org/6688052
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78830 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run/first_run_win.cc')
-rw-r--r-- | chrome/browser/first_run/first_run_win.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/first_run/first_run_win.cc b/chrome/browser/first_run/first_run_win.cc index ec71c80..db6d03b 100644 --- a/chrome/browser/first_run/first_run_win.cc +++ b/chrome/browser/first_run/first_run_win.cc @@ -25,6 +25,7 @@ #include "chrome/browser/extensions/extension_service.h" #include "chrome/browser/extensions/extension_updater.h" #include "chrome/browser/importer/importer_host.h" +#include "chrome/browser/importer/importer_list.h" #include "chrome/browser/importer/importer_progress_dialog.h" #include "chrome/browser/metrics/user_metrics.h" #include "chrome/browser/process_singleton.h" |