OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_TEMPLATE_URL_FETCHER_H_ | 5 #ifndef CHROME_BROWSER_TEMPLATE_URL_FETCHER_H_ |
6 #define CHROME_BROWSER_TEMPLATE_URL_FETCHER_H_ | 6 #define CHROME_BROWSER_TEMPLATE_URL_FETCHER_H_ |
7 | 7 |
8 #include "base/gfx/native_widget_types.h" | 8 #include "app/gfx/native_widget_types.h" |
9 #include "base/scoped_vector.h" | 9 #include "base/scoped_vector.h" |
10 | 10 |
11 class GURL; | 11 class GURL; |
12 class Profile; | 12 class Profile; |
13 class TemplateURL; | 13 class TemplateURL; |
14 class TabContents; | 14 class TabContents; |
15 | 15 |
16 // TemplateURLFetcher is responsible for downloading OpenSearch description | 16 // TemplateURLFetcher is responsible for downloading OpenSearch description |
17 // documents, creating a TemplateURL from the OSDD, and adding the TemplateURL | 17 // documents, creating a TemplateURL from the OSDD, and adding the TemplateURL |
18 // to the TemplateURLModel. Downloading is done in the background. | 18 // to the TemplateURLModel. Downloading is done in the background. |
(...skipping 27 matching lines...) Expand all Loading... |
46 | 46 |
47 Profile* profile_; | 47 Profile* profile_; |
48 | 48 |
49 // In progress requests. | 49 // In progress requests. |
50 ScopedVector<RequestDelegate> requests_; | 50 ScopedVector<RequestDelegate> requests_; |
51 | 51 |
52 DISALLOW_COPY_AND_ASSIGN(TemplateURLFetcher); | 52 DISALLOW_COPY_AND_ASSIGN(TemplateURLFetcher); |
53 }; | 53 }; |
54 | 54 |
55 #endif // CHROME_BROWSER_OSDD_FETCHER_H_ | 55 #endif // CHROME_BROWSER_OSDD_FETCHER_H_ |
OLD | NEW |