OLD | NEW |
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 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ | 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_DOWNLOAD_H_ |
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ | 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_DOWNLOAD_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
11 #include <string> | 11 #include <string> |
12 #include <utility> | 12 #include <utility> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
17 #include "base/time.h" | 17 #include "base/time.h" |
18 #include "chrome/browser/autofill/autofill_type.h" | 18 #include "components/autofill/browser/autofill_type.h" |
19 #include "net/url_request/url_fetcher_delegate.h" | 19 #include "net/url_request/url_fetcher_delegate.h" |
20 | 20 |
21 class AutofillMetrics; | 21 class AutofillMetrics; |
22 class FormStructure; | 22 class FormStructure; |
23 | 23 |
24 namespace content { | 24 namespace content { |
25 class BrowserContext; | 25 class BrowserContext; |
26 } // namespace content | 26 } // namespace content |
27 | 27 |
28 namespace net { | 28 namespace net { |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 | 156 |
157 // |positive_upload_rate_| is for matched forms, | 157 // |positive_upload_rate_| is for matched forms, |
158 // |negative_upload_rate_| for non matched. | 158 // |negative_upload_rate_| for non matched. |
159 double positive_upload_rate_; | 159 double positive_upload_rate_; |
160 double negative_upload_rate_; | 160 double negative_upload_rate_; |
161 | 161 |
162 // Needed for unit-test. | 162 // Needed for unit-test. |
163 int fetcher_id_for_unittest_; | 163 int fetcher_id_for_unittest_; |
164 }; | 164 }; |
165 | 165 |
166 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ | 166 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_DOWNLOAD_H_ |
OLD | NEW |