diff options
Diffstat (limited to 'views/widget/root_view.cc')
-rw-r--r-- | views/widget/root_view.cc | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/views/widget/root_view.cc b/views/widget/root_view.cc index 6942d3d..9537bd8 100644 --- a/views/widget/root_view.cc +++ b/views/widget/root_view.cc @@ -22,6 +22,7 @@ #endif namespace views { +namespace internal { // static const char RootView::kViewClassName[] = "views/RootView"; @@ -415,19 +416,6 @@ bool RootView::GetKeepMouseCursor() { #endif -namespace { -// Set to true if a pure Views implementation is preferred -bool use_pure_views; -} - -void RootView::SetPureViews(bool pure) { - use_pure_views = pure; -} - -bool RootView::IsPureViews() { - return use_pure_views; -} - //////////////////////////////////////////////////////////////////////////////// // RootView, protected: @@ -481,4 +469,6 @@ void RootView::SetMouseLocationAndFlags(const MouseEvent& event) { last_mouse_event_y_ = event.y(); } +} // namespace internal } // namespace views + |