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

Side by Side Diff: chrome/browser/extensions/extension_icon_image.h

Issue 10861034: Supply default icon to extension icon image. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 3 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_EXTENSIONS_EXTENSION_ICON_IMAGE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 13 matching lines...) Expand all
24 } 24 }
25 25
26 namespace extensions { 26 namespace extensions {
27 27
28 // A class that provides an ImageSkia for UI code to use. It handles extension 28 // A class that provides an ImageSkia for UI code to use. It handles extension
29 // icon resource loading, screen scale factor change etc. UI code that uses 29 // icon resource loading, screen scale factor change etc. UI code that uses
30 // extension icon should host this class and be its observer. ExtensionIconImage 30 // extension icon should host this class and be its observer. ExtensionIconImage
31 // should be outlived by the observer. In painting code, UI code paints with the 31 // should be outlived by the observer. In painting code, UI code paints with the
32 // ImageSkia provided by this class. If required extension icon resource is not 32 // ImageSkia provided by this class. If required extension icon resource is not
33 // present, this class uses ImageLoadingTracker to load it and call on its 33 // present, this class uses ImageLoadingTracker to load it and call on its
34 // observer interface when the resource is loaded. 34 // observer interface when the resource is loaded. Until the resource is loaded,
35 // the UI code will be provided with blank, transparent image representation.
36 // UI code can supply default icon whose representations will be added to the
37 // icon if icon's own representation for some scale factor cannot be loaded.
pkotwicz 2012/08/28 18:56:57 Nit: if a representation for some scale factor can
tbarzic 2012/08/29 18:41:28 Done.
38 // If default icon is supplied, it is assumed that it contains representations
39 // for all the scale factors we need.
pkotwicz 2012/08/28 18:56:57 Nit: scale factors we need -> scale factors suppor
tbarzic 2012/08/29 18:41:28 Done.
35 class IconImage : public ImageLoadingTracker::Observer, 40 class IconImage : public ImageLoadingTracker::Observer,
36 public content::NotificationObserver { 41 public content::NotificationObserver {
37 public: 42 public:
38 class Observer { 43 class Observer {
39 public: 44 public:
40 // Invoked when a new image rep for an additional scale factor 45 // Invoked when a new image rep for an additional scale factor
41 // is loaded and added to |image|. 46 // is loaded and added to |image|.
42 virtual void OnExtensionIconImageChanged(IconImage* image) = 0; 47 virtual void OnExtensionIconImageChanged(IconImage* image) = 0;
43 48
44 // Invoked when the icon image couldn't be loaded.
45 virtual void OnIconImageLoadFailed(IconImage* image,
46 ui::ScaleFactor scale_factor) = 0;
47
48 protected: 49 protected:
49 virtual ~Observer() {} 50 virtual ~Observer() {}
50 }; 51 };
51 52
52 IconImage(const Extension* extension, 53 IconImage(const Extension* extension,
53 const ExtensionIconSet& icon_set, 54 const ExtensionIconSet& icon_set,
54 int resource_size_in_dip, 55 int resource_size_in_dip,
56 const gfx::ImageSkia& default_icon,
55 Observer* observer); 57 Observer* observer);
56 virtual ~IconImage(); 58 virtual ~IconImage();
57 59
58 const gfx::ImageSkia& image_skia() const { return image_skia_; } 60 const gfx::ImageSkia& image_skia() const { return image_skia_; }
59 61
60 private: 62 private:
61 class Source; 63 class Source;
62 64
63 typedef std::map<int, ui::ScaleFactor> LoadMap; 65 struct LoadRequest {
66 ui::ScaleFactor scale_factor;
67 bool is_async;
68 };
69
70 typedef std::map<int, LoadRequest> LoadMap;
64 71
65 // Loads bitmap for additional scale factor. 72 // Loads bitmap for additional scale factor.
66 void LoadImageForScaleFactor(ui::ScaleFactor scale_factor); 73 gfx::ImageSkiaRep LoadImageForScaleFactor(ui::ScaleFactor scale_factor);
67 74
68 // ImageLoadingTracker::Observer overrides: 75 // ImageLoadingTracker::Observer overrides:
69 virtual void OnImageLoaded(const gfx::Image& image, 76 virtual void OnImageLoaded(const gfx::Image& image,
70 const std::string& extension_id, 77 const std::string& extension_id,
71 int index) OVERRIDE; 78 int index) OVERRIDE;
72 79
73 // content::NotificationObserver overrides: 80 // content::NotificationObserver overrides:
74 virtual void Observe(int type, 81 virtual void Observe(int type,
75 const content::NotificationSource& source, 82 const content::NotificationSource& source,
76 const content::NotificationDetails& details) OVERRIDE; 83 const content::NotificationDetails& details) OVERRIDE;
77 84
78 const Extension* extension_; 85 const Extension* extension_;
79 const ExtensionIconSet& icon_set_; 86 const ExtensionIconSet& icon_set_;
80 const int resource_size_in_dip_; 87 const int resource_size_in_dip_;
81 const gfx::Size desired_size_in_dip_; 88 const gfx::Size desired_size_in_dip_;
82 89
83 Observer* observer_; 90 Observer* observer_;
84 91
85 Source* source_; // Owned by ImageSkia storage. 92 Source* source_; // Owned by ImageSkia storage.
86 gfx::ImageSkia image_skia_; 93 gfx::ImageSkia image_skia_;
94 // The icon with whose representation |image_skia_| should be updated if
95 // its own representation load fails.
96 gfx::ImageSkia default_icon_;
87 97
88 ImageLoadingTracker tracker_; 98 ImageLoadingTracker tracker_;
89 content::NotificationRegistrar registrar_; 99 content::NotificationRegistrar registrar_;
90 100
91 LoadMap load_map_; 101 LoadMap load_map_;
92 102
93 DISALLOW_COPY_AND_ASSIGN(IconImage); 103 DISALLOW_COPY_AND_ASSIGN(IconImage);
94 }; 104 };
95 105
96 } // namespace extensions 106 } // namespace extensions
97 107
98 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_H_ 108 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_icon_image.cc » ('j') | chrome/browser/extensions/extension_icon_image.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698