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

Unified Diff: chrome/browser/extensions/extension_icon_image_delegate.h

Issue 10825012: chromeos: Fix pixelated icons in app list and launcher (part 2) (by xiyuan) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_icon_image_delegate.h
diff --git a/chrome/browser/extensions/extension_icon_image_delegate.h b/chrome/browser/extensions/extension_icon_image_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..01782eac6c4f058f7e643c23d02c9c72499397ca
--- /dev/null
+++ b/chrome/browser/extensions/extension_icon_image_delegate.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_DELEGATE_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_DELEGATE_H_
+
+class ExtensionIconImage;
+
+class ExtensionIconImageDelegate {
+ public:
+ // Invoked when resource finishes loading and |image| is updated.
tbarzic 2012/07/25 19:37:34 pkotwicz 2012/07/25 02:00:39 Nit: I think "Invoked
tbarzic 2012/07/25 19:53:53 Done.
+ virtual void OnExtensionIconImageChanged(ExtensionIconImage* image) = 0;
+
+ protected:
+ virtual ~ExtensionIconImageDelegate() {}
+};
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698