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

Unified Diff: chrome/browser/chromeos/login/rounded_view.h

Issue 5966008: Show hand cursor only on small user pods and labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use_small_shape is a constructor argument Created 9 years, 11 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 | « no previous file | chrome/browser/chromeos/login/screen_lock_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/rounded_view.h
diff --git a/chrome/browser/chromeos/login/rounded_view.h b/chrome/browser/chromeos/login/rounded_view.h
index 09877ba6115916b35e56098fd7d016d59e2afd3a..bc23f80aa9fcfb86fb124a525935c1f04d0990e4 100644
--- a/chrome/browser/chromeos/login/rounded_view.h
+++ b/chrome/browser/chromeos/login/rounded_view.h
@@ -35,9 +35,11 @@ class RoundedView: public C {
// Empty constructor.
RoundedView() {}
- // One argument constructor.
+ // Constructors.
template<typename D>
explicit RoundedView(const D &value) : C(value) {}
+ template<typename D1, typename D2>
+ explicit RoundedView(const D1 &val1, const D2 &val2) : C(val1, val2) {}
// Overrides views::View.
virtual void ProcessPaint(gfx::Canvas* canvas);
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/screen_lock_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698