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

Side by Side Diff: components/autofill/core/browser/autofill_download_url.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/autofill/browser/autofill_download_url.h" 5 #include "components/autofill/core/browser/autofill_download_url.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "components/autofill/core/common/autofill_switches.h" 10 #include "components/autofill/core/common/autofill_switches.h"
11 #include "googleurl/src/gurl.h" 11 #include "googleurl/src/gurl.h"
12 12
13 namespace autofill { 13 namespace autofill {
14 namespace { 14 namespace {
15 15
(...skipping 22 matching lines...) Expand all
38 std::string baseAutofillServiceUrl = GetBaseAutofillUrl(); 38 std::string baseAutofillServiceUrl = GetBaseAutofillUrl();
39 return GURL(baseAutofillServiceUrl + "query?client=" + kClientName); 39 return GURL(baseAutofillServiceUrl + "query?client=" + kClientName);
40 } 40 }
41 41
42 GURL GetAutofillUploadUrl() { 42 GURL GetAutofillUploadUrl() {
43 std::string baseAutofillServiceUrl = GetBaseAutofillUrl(); 43 std::string baseAutofillServiceUrl = GetBaseAutofillUrl();
44 return GURL(baseAutofillServiceUrl + "upload?client=" + kClientName); 44 return GURL(baseAutofillServiceUrl + "upload?client=" + kClientName);
45 } 45 }
46 46
47 } // namespace autofill 47 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698