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

Side by Side Diff: views/controls/combobox/combobox.cc

Issue 118123: Gets ComboBox to compile on linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 | « no previous file | views/controls/combobox/native_combobox_gtk.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/combobox/combobox.h" 5 #include "views/controls/combobox/combobox.h"
6 6
7 #include "base/logging.h"
7 #include "views/controls/combobox/native_combobox_wrapper.h" 8 #include "views/controls/combobox/native_combobox_wrapper.h"
8 9
9 namespace views { 10 namespace views {
10 11
11 // static 12 // static
12 const char Combobox::kViewClassName[] = "views/Combobox"; 13 const char Combobox::kViewClassName[] = "views/Combobox";
13 14
14 //////////////////////////////////////////////////////////////////////////////// 15 ////////////////////////////////////////////////////////////////////////////////
15 // Combobox, public: 16 // Combobox, public:
16 17
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 native_wrapper_->UpdateEnabled(); 96 native_wrapper_->UpdateEnabled();
96 AddChildView(native_wrapper_->GetView()); 97 AddChildView(native_wrapper_->GetView());
97 } 98 }
98 } 99 }
99 100
100 std::string Combobox::GetClassName() const { 101 std::string Combobox::GetClassName() const {
101 return kViewClassName; 102 return kViewClassName;
102 } 103 }
103 104
104 } // namespace views 105 } // namespace views
OLDNEW
« no previous file with comments | « no previous file | views/controls/combobox/native_combobox_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698