OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ |
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ | 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <stddef.h> | 9 #include <stddef.h> |
10 #include <list> | 10 #include <list> |
11 #include <map> | 11 #include <map> |
12 #include <string> | 12 #include <string> |
13 #include <utility> | 13 #include <utility> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/memory/scoped_vector.h" | 16 #include "base/memory/scoped_vector.h" |
17 #include "base/time.h" | 17 #include "base/time.h" |
18 #include "chrome/browser/autofill/autofill_type.h" | 18 #include "chrome/browser/autofill/autofill_type.h" |
19 #include "chrome/common/net/url_fetcher.h" | 19 #include "content/common/url_fetcher.h" |
20 | 20 |
21 class AutofillMetrics; | 21 class AutofillMetrics; |
22 class FormStructure; | 22 class FormStructure; |
23 class GURL; | 23 class GURL; |
24 class Profile; | 24 class Profile; |
25 | 25 |
26 namespace net { | 26 namespace net { |
27 class URLRequestStatus; | 27 class URLRequestStatus; |
28 } | 28 } |
29 | 29 |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 // |negative_upload_rate_| for non matched. | 168 // |negative_upload_rate_| for non matched. |
169 double positive_upload_rate_; | 169 double positive_upload_rate_; |
170 double negative_upload_rate_; | 170 double negative_upload_rate_; |
171 | 171 |
172 // Needed for unit-test. | 172 // Needed for unit-test. |
173 int fetcher_id_for_unittest_; | 173 int fetcher_id_for_unittest_; |
174 }; | 174 }; |
175 | 175 |
176 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ | 176 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DOWNLOAD_H_ |
177 | 177 |
OLD | NEW |