diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-12 04:53:51 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-12 04:53:51 +0000 |
commit | 2255d61195136acb02d4b6a1e4b70977975ee716 (patch) | |
tree | 39b968c9a5b47663959bebd4f3f7ddab2f5964e5 /chrome/browser/fav_icon_helper.h | |
parent | 3d8e12e127b79f0692eac331c16bed3c1cee967e (diff) | |
download | chromium_src-2255d61195136acb02d4b6a1e4b70977975ee716.zip chromium_src-2255d61195136acb02d4b6a1e4b70977975ee716.tar.gz chromium_src-2255d61195136acb02d4b6a1e4b70977975ee716.tar.bz2 |
Make fav_icon_helper compile on POSIX, remove some unneeded #includes.
Review URL: http://codereview.chromium.org/20286
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9647 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/fav_icon_helper.h')
-rw-r--r-- | chrome/browser/fav_icon_helper.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/fav_icon_helper.h b/chrome/browser/fav_icon_helper.h index 83a46d1..25cb56a 100644 --- a/chrome/browser/fav_icon_helper.h +++ b/chrome/browser/fav_icon_helper.h @@ -6,15 +6,17 @@ #define CHROME_BROWSER_FAV_ICON_HELPER_H__ #include <map> +#include <vector> #include "base/basictypes.h" -#include "base/ref_counted.h" +#include "base/scoped_ptr.h" #include "chrome/browser/cancelable_request.h" #include "chrome/browser/history/history.h" -#include "chrome/browser/profile.h" +#include "chrome/common/ref_counted_util.h" #include "googleurl/src/gurl.h" class NavigationEntry; +class Profile; class SkBitmap; class WebContents; @@ -157,11 +159,10 @@ class FavIconHelper { bool fav_icon_expired_; // Requests to the renderer to download favicons. - typedef std::map<int,DownloadRequest> DownloadRequests; + typedef std::map<int, DownloadRequest> DownloadRequests; DownloadRequests download_requests_; DISALLOW_EVIL_CONSTRUCTORS(FavIconHelper); }; #endif // CHROME_BROWSER_FAV_ICON_HELPER_H__ - |