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

Side by Side Diff: chrome/browser/search_engines/template_url_fetcher.h

Issue 6322001: Remove wstring from TemplateURL and friends.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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) 2006-2008 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_SEARCH_ENGINES_TEMPLATE_URL_FETCHER_H_ 5 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_FETCHER_H_
6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_FETCHER_H_ 6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_FETCHER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/scoped_vector.h" 9 #include "base/scoped_vector.h"
10 #include "base/string16.h"
10 #include "gfx/native_widget_types.h" 11 #include "gfx/native_widget_types.h"
11 12
12 class GURL; 13 class GURL;
13 class Profile; 14 class Profile;
14 class TemplateURL; 15 class TemplateURL;
15 class TemplateURLFetcherCallbacks; 16 class TemplateURLFetcherCallbacks;
16 17
17 // TemplateURLFetcher is responsible for downloading OpenSearch description 18 // TemplateURLFetcher is responsible for downloading OpenSearch description
18 // documents, creating a TemplateURL from the OSDD, and adding the TemplateURL 19 // documents, creating a TemplateURL from the OSDD, and adding the TemplateURL
19 // to the TemplateURLModel. Downloading is done in the background. 20 // to the TemplateURLModel. Downloading is done in the background.
20 // 21 //
21 class TemplateURLFetcher { 22 class TemplateURLFetcher {
22 public: 23 public:
23 enum ProviderType { 24 enum ProviderType {
24 AUTODETECTED_PROVIDER, 25 AUTODETECTED_PROVIDER,
25 EXPLICIT_PROVIDER, // Supplied by Javascript. 26 EXPLICIT_PROVIDER, // Supplied by Javascript.
26 EXPLICIT_DEFAULT_PROVIDER // Supplied by Javascript as default provider. 27 EXPLICIT_DEFAULT_PROVIDER // Supplied by Javascript as default provider.
27 }; 28 };
28 29
29 // Creates a TemplateURLFetcher with the specified Profile. 30 // Creates a TemplateURLFetcher with the specified Profile.
30 explicit TemplateURLFetcher(Profile* profile); 31 explicit TemplateURLFetcher(Profile* profile);
31 ~TemplateURLFetcher(); 32 ~TemplateURLFetcher();
32 33
33 // If TemplateURLFetcher is not already downloading the OSDD for osdd_url, 34 // If TemplateURLFetcher is not already downloading the OSDD for osdd_url,
34 // it is downloaded. If successful and the result can be parsed, a TemplateURL 35 // it is downloaded. If successful and the result can be parsed, a TemplateURL
35 // is added to the TemplateURLModel. Takes ownership of |callbacks|. 36 // is added to the TemplateURLModel. Takes ownership of |callbacks|.
36 void ScheduleDownload(const std::wstring& keyword, 37 void ScheduleDownload(const string16& keyword,
37 const GURL& osdd_url, 38 const GURL& osdd_url,
38 const GURL& favicon_url, 39 const GURL& favicon_url,
39 TemplateURLFetcherCallbacks* callbacks, 40 TemplateURLFetcherCallbacks* callbacks,
40 ProviderType provider_type); 41 ProviderType provider_type);
41 42
42 // The current number of outstanding requests. 43 // The current number of outstanding requests.
43 int requests_count() const { return requests_->size(); } 44 int requests_count() const { return requests_->size(); }
44 45
45 private: 46 private:
46 friend class RequestDelegate; 47 friend class RequestDelegate;
47 48
48 // A RequestDelegate is created to download each OSDD. When done downloading 49 // A RequestDelegate is created to download each OSDD. When done downloading
49 // RequestCompleted is invoked back on the TemplateURLFetcher. 50 // RequestCompleted is invoked back on the TemplateURLFetcher.
50 class RequestDelegate; 51 class RequestDelegate;
51 52
52 Profile* profile() const { return profile_; } 53 Profile* profile() const { return profile_; }
53 54
54 // Invoked from the RequestDelegate when done downloading. 55 // Invoked from the RequestDelegate when done downloading.
55 void RequestCompleted(RequestDelegate* request); 56 void RequestCompleted(RequestDelegate* request);
56 57
57 Profile* profile_; 58 Profile* profile_;
58 59
59 // In progress requests. 60 // In progress requests.
60 ScopedVector<RequestDelegate> requests_; 61 ScopedVector<RequestDelegate> requests_;
61 62
62 DISALLOW_COPY_AND_ASSIGN(TemplateURLFetcher); 63 DISALLOW_COPY_AND_ASSIGN(TemplateURLFetcher);
63 }; 64 };
64 65
65 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_FETCHER_H_ 66 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_FETCHER_H_
OLDNEW
« no previous file with comments | « chrome/browser/search_engines/template_url.cc ('k') | chrome/browser/search_engines/template_url_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698