Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(829)

Unified Diff: chrome/browser/autofill/autocheckout_manager.h

Issue 12091086: [Autofill] Add UMA timing metrics for requestAutocomplete dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase harder Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/autofill/autocheckout_manager.h
diff --git a/chrome/browser/autofill/autocheckout_manager.h b/chrome/browser/autofill/autocheckout_manager.h
index 032d92f1cf83b8db9816edd94f3c45a6d418329b..487f44277e17b3b2729e26ec5e7b7c05b5b7f92e 100644
--- a/chrome/browser/autofill/autocheckout_manager.h
+++ b/chrome/browser/autofill/autocheckout_manager.h
@@ -23,10 +23,6 @@ class GURL;
struct FormData;
struct FormFieldData;
-namespace autofill {
-struct WebElementDescriptor;
-}
-
namespace content {
struct SSLStatus;
}
@@ -35,6 +31,8 @@ namespace gfx {
class RectF;
}
+namespace autofill {
+
class AutocheckoutManager {
public:
explicit AutocheckoutManager(AutofillManager* autofill_manager);
@@ -46,7 +44,7 @@ class AutocheckoutManager {
// Sets |page_meta_data_| with the meta data for the current page.
void OnLoadedPageMetaData(
- scoped_ptr<autofill::AutocheckoutPageMetaData> page_meta_data);
+ scoped_ptr<AutocheckoutPageMetaData> page_meta_data);
// Called when a page containing forms is loaded.
void OnFormsSeen();
@@ -92,7 +90,7 @@ class AutocheckoutManager {
scoped_ptr<CreditCard> credit_card_;
// Autocheckout specific page meta data.
- scoped_ptr<autofill::AutocheckoutPageMetaData> page_meta_data_;
+ scoped_ptr<AutocheckoutPageMetaData> page_meta_data_;
// Whether or not the Autocheckout bubble has been displayed to the user for
// the current forms. Ensures the Autocheckout bubble is only shown to a
@@ -104,4 +102,6 @@ class AutocheckoutManager {
DISALLOW_COPY_AND_ASSIGN(AutocheckoutManager);
};
+} // namespace autofill
+
#endif // CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_MANAGER_H_
« no previous file with comments | « chrome/browser/autofill/autocheckout_infobar_delegate.cc ('k') | chrome/browser/autofill/autocheckout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698