summaryrefslogtreecommitdiffstats
path: root/views/view_wayland.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-19 04:50:16 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-19 04:50:16 +0000
commit11c36bed534c21bb2c6203c3ad6ca5ea54ebf91d (patch)
tree571a73e5c23ec51cf2f0591867421df97678d69c /views/view_wayland.cc
parent684899472204f817834c51d581f518571a6b882d (diff)
downloadchromium_src-11c36bed534c21bb2c6203c3ad6ca5ea54ebf91d.zip
chromium_src-11c36bed534c21bb2c6203c3ad6ca5ea54ebf91d.tar.gz
chromium_src-11c36bed534c21bb2c6203c3ad6ca5ea54ebf91d.tar.bz2
Now that we are doing a hard-cut-over to Aura, remove a bunch of *Views based classes that are obsoleted by Aura. Also remove a bunch of Wayland stuff, since any future Wayland integration is likely done as an implementation detail of Aura, not Views.
Specifically: - views-desktop (classes and NativeWidgetView[s]) - NativeWidgetViews subclasses in Chrome (Constrained Windows, NTCVV, NTCCV, BrowserFrameViews et al). - RWHVV, NWKEV - NativeViewHostViews BUG=none TEST=none Review URL: http://codereview.chromium.org/8598024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110832 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view_wayland.cc')
-rw-r--r--views/view_wayland.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/views/view_wayland.cc b/views/view_wayland.cc
deleted file mode 100644
index 7524858..0000000
--- a/views/view_wayland.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "views/view.h"
-
-#include "base/logging.h"
-
-namespace views {
-
-gfx::NativeViewAccessible View::GetNativeViewAccessible() {
- NOTIMPLEMENTED();
- return NULL;
-}
-
-int View::GetHorizontalDragThreshold() {
- return 8;
-}
-
-int View::GetVerticalDragThreshold() {
- return GetHorizontalDragThreshold();
-}
-
-} // namespace views