| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VIEWS_CONTROLS_NATIVE_CONTROL_WIN_H_ | 5 #ifndef VIEWS_CONTROLS_NATIVE_CONTROL_WIN_H_ |
| 6 #define VIEWS_CONTROLS_NATIVE_CONTROL_WIN_H_ | 6 #define VIEWS_CONTROLS_NATIVE_CONTROL_WIN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "views/controls/combobox/combobox.h" | 9 #include "views/controls/combobox/combobox.h" |
| 10 #include "views/controls/native/native_view_host.h" | 10 #include "views/controls/native/native_view_host.h" |
| 11 | 11 |
| 12 namespace views { | 12 namespace views { |
| 13 | 13 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 // The window procedure before we subclassed. | 86 // The window procedure before we subclassed. |
| 87 WNDPROC original_wndproc_; | 87 WNDPROC original_wndproc_; |
| 88 | 88 |
| 89 DISALLOW_COPY_AND_ASSIGN(NativeControlWin); | 89 DISALLOW_COPY_AND_ASSIGN(NativeControlWin); |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace views | 92 } // namespace views |
| 93 | 93 |
| 94 #endif // #ifndef VIEWS_CONTROLS_NATIVE_CONTROL_WIN_H_ | 94 #endif // #ifndef VIEWS_CONTROLS_NATIVE_CONTROL_WIN_H_ |
| OLD | NEW |