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

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

Issue 11230060: Adding commandline switch and user pref for autofill server url. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698