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

Unified Diff: views/accessible_pane_view_unittest.cc

Issue 8508055: Move views::Accelerator to ui in order to use it from aura code. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase 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
« no previous file with comments | « views/accessible_pane_view.cc ('k') | views/bubble/bubble_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/accessible_pane_view_unittest.cc
diff --git a/views/accessible_pane_view_unittest.cc b/views/accessible_pane_view_unittest.cc
index 5d86ab89c1426660b41214e6aeca1ae24ac1b212..1c54ba5e8d5cc42c89a85343f6f967f73875185e 100644
--- a/views/accessible_pane_view_unittest.cc
+++ b/views/accessible_pane_view_unittest.cc
@@ -4,6 +4,7 @@
#include "views/accessible_pane_view.h"
+#include "ui/base/models/accelerator.h"
#include "views/controls/button/text_button.h"
#include "views/layout/fill_layout.h"
#include "views/test/views_test_base.h"
@@ -29,11 +30,11 @@ class TestBarView : public AccessiblePaneView,
TextButton* third_child_button() const { return third_child_button_.get(); }
TextButton* not_child_button() const { return not_child_button_.get(); }
- const Accelerator& home_key() const { return home_key_; }
- const Accelerator& end_key() const { return end_key_; }
- const Accelerator& escape_key() const { return escape_key_; }
- const Accelerator& left_key() const { return left_key_; }
- const Accelerator& right_key() const { return right_key_; }
+ const ui::Accelerator& home_key() const { return home_key_; }
+ const ui::Accelerator& end_key() const { return end_key_; }
+ const ui::Accelerator& escape_key() const { return escape_key_; }
+ const ui::Accelerator& left_key() const { return left_key_; }
+ const ui::Accelerator& right_key() const { return right_key_; }
virtual View* GetDefaultFocusableChild() OVERRIDE;
« no previous file with comments | « views/accessible_pane_view.cc ('k') | views/bubble/bubble_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698