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

Side by Side Diff: ui/views/controls/textfield/textfield_controller.cc

Issue 117983002: Prefix string16 with base:: in ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ui/views/controls/textfield/textfield_controller.h" 5 #include "ui/views/controls/textfield/textfield_controller.h"
6 6
7 #include "ui/base/dragdrop/drag_drop_types.h" 7 #include "ui/base/dragdrop/drag_drop_types.h"
8 #include "ui/events/event.h" 8 #include "ui/events/event.h"
9 9
10 namespace views { 10 namespace views {
(...skipping 13 matching lines...) Expand all
24 } 24 }
25 25
26 bool TextfieldController::IsCommandIdEnabled(int command_id) const { 26 bool TextfieldController::IsCommandIdEnabled(int command_id) const {
27 return false; 27 return false;
28 } 28 }
29 29
30 bool TextfieldController::IsItemForCommandIdDynamic(int command_id) const { 30 bool TextfieldController::IsItemForCommandIdDynamic(int command_id) const {
31 return false; 31 return false;
32 } 32 }
33 33
34 string16 TextfieldController::GetLabelForCommandId(int command_id) const { 34 base::string16 TextfieldController::GetLabelForCommandId(int command_id) const {
35 return string16(); 35 return base::string16();
36 } 36 }
37 37
38 bool TextfieldController::HandlesCommand(int command_id) const { 38 bool TextfieldController::HandlesCommand(int command_id) const {
39 return false; 39 return false;
40 } 40 }
41 41
42 } // namespace views 42 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/controls/textfield/textfield_controller.h ('k') | ui/views/controls/textfield/textfield_views_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698