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

Unified Diff: views/controls/native/native_view_host.h

Issue 8598024: Now that we are doing a hard-cut-over to Aura, remove a bunch of *Views based classes that are ob... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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/controls/combobox/native_combobox_wayland.cc ('k') | views/controls/native/native_view_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/native/native_view_host.h
===================================================================
--- views/controls/native/native_view_host.h (revision 110826)
+++ views/controls/native/native_view_host.h (working copy)
@@ -38,9 +38,6 @@
// added to a View hierarchy hosted within a valid Widget.
void Attach(gfx::NativeView native_view);
- // Attach a views::View instead of a native view to this host.
- void AttachToView(View* view);
-
// Detach the attached native view. Its bounds and visibility will no
// longer be manipulated by this View. The native view may be destroyed and
// detached before calling this function, and this has no effect in that case.
@@ -76,9 +73,6 @@
// Accessor for |native_view_|.
gfx::NativeView native_view() const { return native_view_; }
- // Accessor for |views_view_|.
- View* views_view() const { return views_view_; }
-
void NativeViewDestroyed();
// Overridden from View:
@@ -104,11 +98,6 @@
// attached.
gfx::NativeView native_view_;
- // The attached view. There is exactly one native_view_ or views_view_
- // attached.
- // TODO(oshima): Delete views_view_ once TOUCH_UI migrates to aura.
- View* views_view_;
-
// A platform-specific wrapper that does the OS-level manipulation of the
// attached gfx::NativeView.
scoped_ptr<NativeViewHostWrapper> native_wrapper_;
« no previous file with comments | « views/controls/combobox/native_combobox_wayland.cc ('k') | views/controls/native/native_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698