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

Side by Side Diff: chrome/browser/autofill/autofill_manager.h

Issue 6633001: Convert autofill messages to use the new IPC macros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <list> 9 #include <list>
10 #include <string> 10 #include <string>
(...skipping 10 matching lines...) Expand all
21 class AutoFillCCInfoBarDelegate; 21 class AutoFillCCInfoBarDelegate;
22 class AutoFillProfile; 22 class AutoFillProfile;
23 class AutofillMetrics; 23 class AutofillMetrics;
24 class CreditCard; 24 class CreditCard;
25 class FormStructure; 25 class FormStructure;
26 class PrefService; 26 class PrefService;
27 class RenderViewHost; 27 class RenderViewHost;
28 28
29 namespace webkit_glue { 29 namespace webkit_glue {
30 struct FormData; 30 struct FormData;
31 class FormField; 31 struct FormField;
32 } // namespace webkit_glue 32 } // namespace webkit_glue
33 33
34 // Manages saving and restoring the user's personal information entered into web 34 // Manages saving and restoring the user's personal information entered into web
35 // forms. 35 // forms.
36 class AutofillManager : public TabContentsObserver, 36 class AutofillManager : public TabContentsObserver,
37 public AutofillDownloadManager::Observer { 37 public AutofillDownloadManager::Observer {
38 public: 38 public:
39 explicit AutofillManager(TabContents* tab_contents); 39 explicit AutofillManager(TabContents* tab_contents);
40 virtual ~AutofillManager(); 40 virtual ~AutofillManager();
41 41
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, 236 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest,
237 NoQualityMetricsForNonAutofillableForms); 237 NoQualityMetricsForNonAutofillableForms);
238 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch); 238 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, SaneMetricsWithCacheMismatch);
239 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsForFailure); 239 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsForFailure);
240 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId); 240 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, QualityMetricsWithExperimentId);
241 241
242 DISALLOW_COPY_AND_ASSIGN(AutofillManager); 242 DISALLOW_COPY_AND_ASSIGN(AutofillManager);
243 }; 243 };
244 244
245 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 245 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/browser/autofill/autofill_field_unittest.cc ('k') | chrome/browser/autofill/autofill_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698