Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ | |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 class GURL; | |
| 11 class PrefServiceBase; | |
| 12 | |
| 13 class AutofillDownloadUrl { | |
| 14 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.
| |
| 15 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.
| |
| 16 : pref_service_(pref_service) {} | |
| 17 | |
| 18 GURL GetAutofillRequestUrl(); | |
| 19 GURL GetAutofillUploadUrl(); | |
| 20 private: | |
| 21 void RegisterPreferences(); | |
| 22 std::string GetBaseAutofillUrl(); | |
| 23 | |
| 24 PrefServiceBase* pref_service_; | |
|
Albert Bodenhamer
2012/10/23 23:57:11
DISALLOW_COPY_AND_ASSIGN
ahutter
2012/10/24 17:33:45
Done.
| |
| 25 }; | |
| 26 | |
| 27 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ | |
| OLD | NEW |