Chromium Code Reviews| Index: chrome/browser/autofill/autofill_download_url.h |
| diff --git a/chrome/browser/autofill/autofill_download_url.h b/chrome/browser/autofill/autofill_download_url.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2536809c17fe0a62c207a6e1120f9345c7108abc |
| --- /dev/null |
| +++ b/chrome/browser/autofill/autofill_download_url.h |
| @@ -0,0 +1,27 @@ |
| +// Copyright (c) 2012 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. |
| + |
| +#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ |
| +#define CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ |
| + |
| +#include <string> |
| + |
| +class GURL; |
| +class PrefServiceBase; |
| + |
| +class AutofillDownloadUrl { |
| + public: |
|
Albert Bodenhamer
2012/10/23 23:34:17
1 space on access specifiers.
ahutter
2012/10/24 17:33:45
I think I fixed this.
|
| + explicit AutofillDownloadUrl(PrefServiceBase* pref_service) |
|
Albert Bodenhamer
2012/10/23 23:34:17
1 space after access specifier.
ahutter
2012/10/24 17:33:45
I think I fixed this.
|
| + : pref_service_(pref_service) {} |
| + |
| + GURL GetAutofillRequestUrl(); |
| + GURL GetAutofillUploadUrl(); |
| + private: |
| + void RegisterPreferences(); |
| + std::string GetBaseAutofillUrl(); |
| + |
| + PrefServiceBase* pref_service_; |
|
Albert Bodenhamer
2012/10/23 23:57:11
DISALLOW_COPY_AND_ASSIGN
ahutter
2012/10/24 17:33:45
Done.
|
| +}; |
| + |
| +#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ |