Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_DELEGATE_H_ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_DELEGATE_H_ | |
| 7 | |
| 8 class ExtensionIconImage; | |
| 9 | |
| 10 class ExtensionIconImageDelegate { | |
| 11 public: | |
| 12 // 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.
| |
| 13 virtual void OnExtensionIconImageChanged(ExtensionIconImage* image) = 0; | |
| 14 | |
| 15 protected: | |
| 16 virtual ~ExtensionIconImageDelegate() {} | |
| 17 }; | |
| 18 | |
| 19 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ICON_IMAGE_DELEGATE_H_ | |
| OLD | NEW |