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

Side by Side Diff: views/controls/listbox/native_listbox_win.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « views/controls/link.cc ('k') | views/controls/listbox/native_listbox_wrapper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "views/controls/listbox/native_listbox_win.h" 5 #include "views/controls/listbox/native_listbox_win.h"
6 6
7 #include <commctrl.h> 7 #include <commctrl.h>
8 #include <windowsx.h> 8 #include <windowsx.h>
9 9
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "gfx/font.h"
12 #include "ui/base/l10n/l10n_util_win.h" 11 #include "ui/base/l10n/l10n_util_win.h"
13 #include "ui/base/resource/resource_bundle.h" 12 #include "ui/base/resource/resource_bundle.h"
13 #include "ui/gfx/font.h"
14 #include "views/controls/listbox/listbox.h" 14 #include "views/controls/listbox/listbox.h"
15 #include "views/widget/widget.h" 15 #include "views/widget/widget.h"
16 16
17 namespace views { 17 namespace views {
18 18
19 //////////////////////////////////////////////////////////////////////////////// 19 ////////////////////////////////////////////////////////////////////////////////
20 // NativeListboxWin, public: 20 // NativeListboxWin, public:
21 21
22 NativeListboxWin::NativeListboxWin(Listbox* listbox, 22 NativeListboxWin::NativeListboxWin(Listbox* listbox,
23 const std::vector<string16>& strings, 23 const std::vector<string16>& strings,
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 // static 124 // static
125 NativeListboxWrapper* NativeListboxWrapper::CreateNativeWrapper( 125 NativeListboxWrapper* NativeListboxWrapper::CreateNativeWrapper(
126 Listbox* listbox, 126 Listbox* listbox,
127 const std::vector<string16>& strings, 127 const std::vector<string16>& strings,
128 Listbox::Listener* listener) { 128 Listbox::Listener* listener) {
129 return new NativeListboxWin(listbox, strings, listener); 129 return new NativeListboxWin(listbox, strings, listener);
130 } 130 }
131 131
132 } // namespace views 132 } // namespace views
OLDNEW
« no previous file with comments | « views/controls/link.cc ('k') | views/controls/listbox/native_listbox_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698