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

Unified Diff: ui/views/controls/focus_ring.h

Issue 2411693002: views: add focus ring to TreeView (Closed)
Patch Set: move FocusRing support into ScrollView Created 4 years, 2 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 | ui/views/controls/scroll_view.h » ('j') | ui/views/controls/scroll_view.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/focus_ring.h
diff --git a/ui/views/controls/focus_ring.h b/ui/views/controls/focus_ring.h
index 2438bc7b9dd5f215359deddab148669cc2f798a6..181858ff521217d55ff255e5a9a921e8eddfbdae 100644
--- a/ui/views/controls/focus_ring.h
+++ b/ui/views/controls/focus_ring.h
@@ -14,6 +14,11 @@ namespace views {
// the bounds of its parent view.
class FocusRing : public View {
public:
+ static const char kViewClassName[];
+
+ FocusRing();
sky 2016/10/12 23:58:01 Move definition to match new position (style guide
Elly Fong-Jones 2016/10/13 11:14:56 Done.
+ ~FocusRing() override;
+
// Create a FocusRing and adds it to |parent|.
static void Install(views::View* parent);
@@ -27,10 +32,6 @@ class FocusRing : public View {
void OnPaint(gfx::Canvas* canvas) override;
private:
- static const char kViewClassName[];
-
- FocusRing();
- ~FocusRing() override;
DISALLOW_COPY_AND_ASSIGN(FocusRing);
};
« no previous file with comments | « no previous file | ui/views/controls/scroll_view.h » ('j') | ui/views/controls/scroll_view.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698