diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-13 16:19:34 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-13 16:19:34 +0000 |
commit | 77a91c7f104222394a9b942cb1623b8a7dc07163 (patch) | |
tree | 5789fc71dab20cf0710bc34b0c2aca6f08f1581b /chrome/browser/autofill/autofill_country.cc | |
parent | 01b3b9d5148f9b2934d33e5069ae916589179059 (diff) | |
download | chromium_src-77a91c7f104222394a9b942cb1623b8a7dc07163.zip chromium_src-77a91c7f104222394a9b942cb1623b8a7dc07163.tar.gz chromium_src-77a91c7f104222394a9b942cb1623b8a7dc07163.tar.bz2 |
Create chrome/browser/api directory. Move infobar delegates used by Autofill to the directory.
Also, consolidate infobar delegate interfaces under infobars/ rather than some under infobars/ and some under tab_contents/, as the ones under tab_contents/ were not coupled with tab_contents/ in any way.
Remove feedback/proto/extension.pb.h from Autofill's DEPS file simply by dropping the include, it was not being used.
BUG=140037,138280
Review URL: https://chromiumcodereview.appspot.com/10843071
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151279 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_country.cc')
-rw-r--r-- | chrome/browser/autofill/autofill_country.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/autofill_country.cc b/chrome/browser/autofill/autofill_country.cc index ff12e29..03b1fef 100644 --- a/chrome/browser/autofill/autofill_country.cc +++ b/chrome/browser/autofill/autofill_country.cc @@ -4,9 +4,9 @@ #include "chrome/browser/autofill/autofill_country.h" -#include <map> #include <stddef.h> #include <stdint.h> +#include <map> #include <utility> #include "base/logging.h" @@ -15,8 +15,8 @@ #include "base/stl_util.h" #include "base/string_util.h" #include "base/utf_string_conversions.h" -#include "content/public/browser/content_browser_client.h" #include "content/public/browser/browser_thread.h" +#include "content/public/browser/content_browser_client.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" #include "unicode/coll.h" |