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..3c174f947c730fc799a5fd2489cd7be7dbb2930f |
| --- /dev/null |
| +++ b/chrome/browser/autofill/autofill_download_url.h |
| @@ -0,0 +1,31 @@ |
| +// 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> |
| + |
| +#include "base/basictypes.h" |
| + |
| +class GURL; |
| +class PrefServiceBase; |
| + |
| +class AutofillDownloadUrl { |
| + public: |
|
Albert Bodenhamer
2012/10/24 19:51:56
Single space indent on public:.
It should be:
cla
ahutter
2012/10/24 21:29:45
Done.
|
| + explicit AutofillDownloadUrl(PrefServiceBase* pref_service) |
|
Albert Bodenhamer
2012/10/24 19:51:56
Should be:
explicit Blah (Stuff* stuff)
: Blah
ahutter
2012/10/24 21:29:45
Done.
|
| + : pref_service_(pref_service) {} |
| + |
| + GURL GetAutofillRequestUrl(); |
| + GURL GetAutofillUploadUrl(); |
| + private: |
| + void RegisterPreferences(); |
| + std::string GetBaseAutofillUrl(); |
| + |
| + PrefServiceBase* pref_service_; |
| + DISALLOW_COPY_AND_ASSIGN(AutofillDownloadUrl); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ |
| + |