diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-16 00:52:43 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-16 00:52:43 +0000 |
commit | 913e45a38e635ad3b0d7db78b78367cccd62b421 (patch) | |
tree | 750d8758c099a26d9edc7971d93431237a287a66 /chrome/browser/autofill | |
parent | a1277d59b62d993d15a951a2cb2372b835ecdec5 (diff) | |
download | chromium_src-913e45a38e635ad3b0d7db78b78367cccd62b421.zip chromium_src-913e45a38e635ad3b0d7db78b78367cccd62b421.tar.gz chromium_src-913e45a38e635ad3b0d7db78b78367cccd62b421.tar.bz2 |
Cleanup: Remove forward declarations in various chrome/browser directories.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8533030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110225 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill')
-rw-r--r-- | chrome/browser/autofill/autofill_cc_infobar_delegate.h | 3 | ||||
-rw-r--r-- | chrome/browser/autofill/autofill_download.h | 5 | ||||
-rw-r--r-- | chrome/browser/autofill/autofill_feedback_infobar_delegate.h | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/chrome/browser/autofill/autofill_cc_infobar_delegate.h b/chrome/browser/autofill/autofill_cc_infobar_delegate.h index 415fe7c..9b17bc7 100644 --- a/chrome/browser/autofill/autofill_cc_infobar_delegate.h +++ b/chrome/browser/autofill/autofill_cc_infobar_delegate.h @@ -16,8 +16,7 @@ class CreditCard; class PersonalDataManager; -class SkBitmap; -class TabContents; + namespace content { struct LoadCommittedDetails; } diff --git a/chrome/browser/autofill/autofill_download.h b/chrome/browser/autofill/autofill_download.h index 6144b90..9a27b15 100644 --- a/chrome/browser/autofill/autofill_download.h +++ b/chrome/browser/autofill/autofill_download.h @@ -21,13 +21,8 @@ class AutofillMetrics; class FormStructure; -class GURL; class Profile; -namespace net { -class URLRequestStatus; -} - // Handles getting and updating Autofill heuristics. class AutofillDownloadManager : public content::URLFetcherDelegate { public: diff --git a/chrome/browser/autofill/autofill_feedback_infobar_delegate.h b/chrome/browser/autofill/autofill_feedback_infobar_delegate.h index 04e4eca..551f1b5 100644 --- a/chrome/browser/autofill/autofill_feedback_infobar_delegate.h +++ b/chrome/browser/autofill/autofill_feedback_infobar_delegate.h @@ -6,13 +6,13 @@ #define CHROME_BROWSER_AUTOFILL_AUTOFILL_FEEDBACK_INFOBAR_DELEGATE_H_ #pragma once +#include <string> + #include "base/basictypes.h" #include "base/string16.h" #include "chrome/browser/tab_contents/link_infobar_delegate.h" #include "webkit/glue/window_open_disposition.h" -class TabContents; - // An InfoBar delegate that prompts the user to provide additional feedback for // the Autofill developers. class AutofillFeedbackInfoBarDelegate : public LinkInfoBarDelegate { |