OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_FAVICON_SERVICE_H__ | 5 #ifndef CHROME_BROWSER_FAVICON_SERVICE_H__ |
6 #define CHROME_BROWSER_FAVICON_SERVICE_H__ | 6 #define CHROME_BROWSER_FAVICON_SERVICE_H__ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 11 #include "base/ref_counted_memory.h" |
11 #include "base/task.h" | 12 #include "base/task.h" |
12 #include "chrome/browser/cancelable_request.h" | 13 #include "chrome/browser/cancelable_request.h" |
13 #include "chrome/browser/history/history_types.h" | 14 #include "chrome/browser/history/history_types.h" |
14 #include "chrome/common/notification_observer.h" | 15 #include "chrome/common/notification_observer.h" |
15 #include "chrome/common/ref_counted_util.h" | 16 #include "chrome/common/ref_counted_util.h" |
16 | 17 |
17 class GURL; | 18 class GURL; |
18 class Profile; | 19 class Profile; |
19 | 20 |
20 // The favicon service provides methods to access favicons. It calls the history | 21 // The favicon service provides methods to access favicons. It calls the history |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 private: | 89 private: |
89 Profile* profile_; | 90 Profile* profile_; |
90 | 91 |
91 // Helper to forward an empty result if we cannot get the history service. | 92 // Helper to forward an empty result if we cannot get the history service. |
92 void ForwardEmptyResultAsync(GetFaviconRequest* request); | 93 void ForwardEmptyResultAsync(GetFaviconRequest* request); |
93 | 94 |
94 DISALLOW_COPY_AND_ASSIGN(FaviconService); | 95 DISALLOW_COPY_AND_ASSIGN(FaviconService); |
95 }; | 96 }; |
96 | 97 |
97 #endif // CHROME_BROWSER_FAVICON_SERVICE_H__ | 98 #endif // CHROME_BROWSER_FAVICON_SERVICE_H__ |
OLD | NEW |