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

Unified Diff: chrome/browser/ui/views/tab_icon_view_model.h

Issue 10736063: views: Extract TabIconViewModel into its own header file. (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
« no previous file with comments | « chrome/browser/ui/views/tab_icon_view.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tab_icon_view_model.h
diff --git a/chrome/browser/ui/views/tab_icon_view_model.h b/chrome/browser/ui/views/tab_icon_view_model.h
new file mode 100644
index 0000000000000000000000000000000000000000..ae3ab2b1883125dd8ccf338f0bea00269589a3df
--- /dev/null
+++ b/chrome/browser/ui/views/tab_icon_view_model.h
@@ -0,0 +1,29 @@
+// 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_UI_VIEWS_TAB_ICON_VIEW_MODEL_H_
+#define CHROME_BROWSER_UI_VIEWS_TAB_ICON_VIEW_MODEL_H_
+
+namespace gfx {
+class ImageSkia;
+}
+
+namespace chrome {
+
+// Classes implement this interface to provide state for the TabIconView.
+class TabIconViewModel {
+ public:
+ // Returns true if the TabIconView should show a loading animation.
+ virtual bool ShouldTabIconViewAnimate() const = 0;
+
+ // Returns the favicon to display in the icon view
+ virtual gfx::ImageSkia GetFaviconForTabIconView() = 0;
+
+ protected:
+ virtual ~TabIconViewModel() {}
+};
+
+} // namespace chrome
+
+#endif // CHROME_BROWSER_UI_VIEWS_TAB_ICON_VIEW_MODEL_H_
« no previous file with comments | « chrome/browser/ui/views/tab_icon_view.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698