diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-29 06:02:19 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-29 06:02:19 +0000 |
commit | 17dee5e7005a82e08d11be50d56477939124a6b7 (patch) | |
tree | 7133a5d7a086ce238057cb82e0e81d332dafba8f /views/views.gyp | |
parent | bf0136d62bfe02f57821ce026c04b6e8204eb482 (diff) | |
download | chromium_src-17dee5e7005a82e08d11be50d56477939124a6b7.zip chromium_src-17dee5e7005a82e08d11be50d56477939124a6b7.tar.gz chromium_src-17dee5e7005a82e08d11be50d56477939124a6b7.tar.bz2 |
Refactors HWNDView, NativeViewHostGtk and NativeViewHost so that they match the NativeControl pattern established for NativeButtons. NativeViewHost is a platform-neutral class that clients instantiate. Behind the scenes the platform instantiates the appropriate NativeViewHostWrapper implementation, either NativeViewHostGtk (as before) or NativeViewHostWin (replaces HWNDView).
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/114059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17169 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/views.gyp')
-rw-r--r-- | views/views.gyp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/views/views.gyp b/views/views.gyp index 5633572..69ed7a1 100644 --- a/views/views.gyp +++ b/views/views.gyp @@ -87,8 +87,6 @@ 'controls/button/text_button.h', 'controls/combo_box.cc', 'controls/combo_box.h', - 'controls/hwnd_view.cc', - 'controls/hwnd_view.h', 'controls/image_view.cc', 'controls/image_view.h', 'controls/label.cc', @@ -113,10 +111,13 @@ 'controls/native_control_gtk.h', 'controls/native_control_win.cc', 'controls/native_control_win.h', - 'controls/native_view_host.cc', - 'controls/native_view_host.h', - 'controls/native_view_host_gtk.cc', - 'controls/native_view_host_gtk.h', + 'controls/native/native_view_host.cc', + 'controls/native/native_view_host.h', + 'controls/native/native_view_host_gtk.cc', + 'controls/native/native_view_host_gtk.h', + 'controls/native/native_view_host_win.cc', + 'controls/native/native_view_host_win.h', + 'controls/native/native_view_host_wrapper.h', 'controls/scroll_view.cc', 'controls/scroll_view.h', 'controls/scrollbar/bitmap_scroll_bar.cc', |