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

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: More fixes from code review 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 #include "base/basictypes.h"
11
12 class GURL;
13 class PrefServiceBase;
14
15 class AutofillDownloadUrl {
16 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.
17 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.
18 : pref_service_(pref_service) {}
19
20 GURL GetAutofillRequestUrl();
21 GURL GetAutofillUploadUrl();
22 private:
23 void RegisterPreferences();
24 std::string GetBaseAutofillUrl();
25
26 PrefServiceBase* pref_service_;
27 DISALLOW_COPY_AND_ASSIGN(AutofillDownloadUrl);
28 };
29
30 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_
31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698