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

Side by Side Diff: webkit/glue/image_resource_fetcher.h

Issue 7094: GCC 4.3 fixes.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 12 years, 2 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
« no previous file with comments | « webkit/glue/alt_error_page_resource_fetcher.h ('k') | webkit/glue/resource_fetcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 WEBKIT_GLUE_IMAGE_RESOURCE_FETCHER_H__ 5 #ifndef WEBKIT_GLUE_IMAGE_RESOURCE_FETCHER_H__
6 #define WEBKIT_GLUE_IMAGE_RESOURCE_FETCHER_H__ 6 #define WEBKIT_GLUE_IMAGE_RESOURCE_FETCHER_H__
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "webkit/glue/resource_fetcher.h" 9 #include "webkit/glue/resource_fetcher.h"
10 10
11 class SkBitmap; 11 class SkBitmap;
12 class WebCore::ResourceResponse;
13 class WebViewImpl; 12 class WebViewImpl;
14 13
15 // ImageResourceFetcher handles downloading an image for a webview. Once 14 // ImageResourceFetcher handles downloading an image for a webview. Once
16 // downloading is done the hosting WebViewImpl is notified. ImageResourceFetcher 15 // downloading is done the hosting WebViewImpl is notified. ImageResourceFetcher
17 // is used to download the favicon and images for web apps. 16 // is used to download the favicon and images for web apps.
18 class ImageResourceFetcher : public ResourceFetcher::Delegate { 17 class ImageResourceFetcher : public ResourceFetcher::Delegate {
19 public: 18 public:
20 ImageResourceFetcher(WebViewImpl* web_view, 19 ImageResourceFetcher(WebViewImpl* web_view,
21 int id, 20 int id,
22 const GURL& image_url, 21 const GURL& image_url,
(...skipping 30 matching lines...) Expand all
53 const int image_size_; 52 const int image_size_;
54 53
55 // Does the actual download. 54 // Does the actual download.
56 scoped_ptr<ResourceFetcher> fetcher_; 55 scoped_ptr<ResourceFetcher> fetcher_;
57 56
58 DISALLOW_EVIL_CONSTRUCTORS(ImageResourceFetcher); 57 DISALLOW_EVIL_CONSTRUCTORS(ImageResourceFetcher);
59 }; 58 };
60 59
61 #endif // WEBKIT_GLUE_IMAGE_RESOURCE_FETCHER_H__ 60 #endif // WEBKIT_GLUE_IMAGE_RESOURCE_FETCHER_H__
62 61
OLDNEW
« no previous file with comments | « webkit/glue/alt_error_page_resource_fetcher.h ('k') | webkit/glue/resource_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698