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..860822867d1110830c9b47f8c619bac0bb927644 |
| --- /dev/null |
| +++ b/chrome/browser/autofill/autofill_download_url.h |
| @@ -0,0 +1,16 @@ |
| +// 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_ |
| + |
| +class GURL; |
| + |
| +namespace autofill { |
| + GURL GetAutofillQueryUrl(); |
| + GURL GetAutofillUploadUrl(); |
|
Ilya Sherman
2012/10/29 16:47:54
nit: The more typical indentation for these lines
ahutter
2012/10/29 17:03:53
Done.
|
| +} |
| + |
| +#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_URL_H_ |
| + |