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

Side by Side Diff: chrome/browser/autofill/autofill_download.h

Issue 7006005: Move UrlFetcher to content. I originally thought that it's only used by chrome code, but turns o... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix linux Created 9 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) 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
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
OLDNEW
« no previous file with comments | « chrome/browser/autofill/autofill_browsertest.cc ('k') | chrome/browser/autofill/autofill_download_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698