diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 18:47:09 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 18:47:09 +0000 |
commit | 4d022ff503f77992fc54377b6fab55832ba5204b (patch) | |
tree | cf102f60a4a6c9b9e749ab300b2872445d97efef /chrome/browser/importer | |
parent | 471422037fc09b24f8ca08164e041c26a5e764e8 (diff) | |
download | chromium_src-4d022ff503f77992fc54377b6fab55832ba5204b.zip chromium_src-4d022ff503f77992fc54377b6fab55832ba5204b.tar.gz chromium_src-4d022ff503f77992fc54377b6fab55832ba5204b.tar.bz2 |
Remove some #includes where possible.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/335002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29915 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/importer')
-rw-r--r-- | chrome/browser/importer/importer.cc | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/chrome/browser/importer/importer.cc b/chrome/browser/importer/importer.cc index 0e7bbbb..e2d30f1 100644 --- a/chrome/browser/importer/importer.cc +++ b/chrome/browser/importer/importer.cc @@ -1,38 +1,28 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2009 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/importer/importer.h" -#include <map> -#include <set> - #include "app/gfx/favicon_size.h" #include "app/gfx/codec/png_codec.h" #include "app/l10n_util.h" -#include "base/file_util.h" -#include "base/message_loop.h" #include "base/string_util.h" +#include "base/thread.h" #include "chrome/browser/bookmarks/bookmark_model.h" -#include "chrome/browser/browser.h" #include "chrome/browser/browser_list.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/browsing_instance.h" -#include "chrome/browser/favicon_service.h" -#include "chrome/browser/first_run.h" #include "chrome/browser/importer/firefox_profile_lock.h" #include "chrome/browser/importer/importer_bridge.h" #include "chrome/browser/renderer_host/site_instance.h" #include "chrome/browser/search_engines/template_url_model.h" -#include "chrome/browser/shell_integration.h" #include "chrome/browser/webdata/web_data_service.h" #include "chrome/common/notification_service.h" #include "chrome/common/pref_names.h" -#include "chrome/common/pref_service.h" #include "grit/generated_resources.h" #include "skia/ext/image_operations.h" #include "webkit/glue/image_decoder.h" -#include "webkit/glue/password_form.h" // TODO(port): Port these files. #if defined(OS_WIN) |