| 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 COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_DOWNLOAD_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DOWNLOAD_H_ |
| 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_DOWNLOAD_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_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 "components/autofill/browser/autofill_type.h" | 18 #include "components/autofill/core/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 namespace content { | 21 namespace content { |
| 22 class BrowserContext; | 22 class BrowserContext; |
| 23 } // namespace content | 23 } // namespace content |
| 24 | 24 |
| 25 namespace net { | 25 namespace net { |
| 26 class URLFetcher; | 26 class URLFetcher; |
| 27 } // namespace net | 27 } // namespace net |
| 28 | 28 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 // |negative_upload_rate_| for non matched. | 160 // |negative_upload_rate_| for non matched. |
| 161 double positive_upload_rate_; | 161 double positive_upload_rate_; |
| 162 double negative_upload_rate_; | 162 double negative_upload_rate_; |
| 163 | 163 |
| 164 // Needed for unit-test. | 164 // Needed for unit-test. |
| 165 int fetcher_id_for_unittest_; | 165 int fetcher_id_for_unittest_; |
| 166 }; | 166 }; |
| 167 | 167 |
| 168 } // namespace autofill | 168 } // namespace autofill |
| 169 | 169 |
| 170 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOFILL_DOWNLOAD_H_ | 170 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DOWNLOAD_H_ |
| OLD | NEW |