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

Unified Diff: chrome/browser/ui/tab_contents/tab_contents_wrapper.h

Issue 7685006: Implement input type=color UI (common part) (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: forgot to turn off flag Created 9 years, 1 month 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/ui/tab_contents/tab_contents_wrapper.h
diff --git a/chrome/browser/ui/tab_contents/tab_contents_wrapper.h b/chrome/browser/ui/tab_contents/tab_contents_wrapper.h
index 1592e6caf47761feb5be2f3b2a1f19619f5980c8..0087acc876e8bd8a349c827787712c563079baf0 100644
--- a/chrome/browser/ui/tab_contents/tab_contents_wrapper.h
+++ b/chrome/browser/ui/tab_contents/tab_contents_wrapper.h
@@ -26,6 +26,9 @@ class AutomationTabHelper;
class BlockedContentTabHelper;
class BookmarkTabHelper;
class ConstrainedWindowTabHelper;
+#if defined(ENABLE_INPUT_COLOR)
+class ColorSelectObserver;
+#endif
class DownloadRequestLimiterObserver;
class Extension;
class ExtensionTabHelper;
@@ -319,6 +322,9 @@ class TabContentsWrapper : public TabContentsObserver,
// (These provide no API for callers; objects that need to exist 1:1 with tabs
// and silently do their thing live here.)
+#if defined(ENABLE_INPUT_COLOR)
+ scoped_ptr<ColorSelectObserver> color_select_observer_;
+#endif
scoped_ptr<DownloadRequestLimiterObserver> download_request_limiter_observer_;
scoped_ptr<ExtensionWebNavigationTabObserver> webnavigation_observer_;
scoped_ptr<ExternalProtocolObserver> external_protocol_observer_;

Powered by Google App Engine
This is Rietveld 408576698