OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/logging.h" |
| 6 #include "views/controls/textfield/native_textfield_views.h" |
| 7 #include "views/controls/textfield/textfield.h" |
| 8 |
| 9 namespace views { |
| 10 |
| 11 /////////////////////////////////////////////////////////////////////////////// |
| 12 // NativeTextfieldWrapper: |
| 13 |
| 14 // static |
| 15 NativeTextfieldWrapper* NativeTextfieldWrapper::CreateWrapper( |
| 16 Textfield* field) { |
| 17 return new NativeTextfieldViews(field); |
| 18 } |
| 19 |
| 20 } // namespace views |
OLD | NEW |