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

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

Issue 297733002: Deactivate omnibox touch editing on command execution (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed VIEWS_EXPORT from test api Created 6 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2014 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 "ui/views/controls/textfield/textfield_test_api.h"
6
7 namespace views {
8
9 TextfieldTestApi::TextfieldTestApi(Textfield* textfield)
10 : textfield_(textfield) {
11 DCHECK(textfield);
12 }
13
14 void TextfieldTestApi::UpdateContextMenu() {
15 textfield_->UpdateContextMenu();
16 }
17
18 gfx::RenderText* TextfieldTestApi::GetRenderText() const {
19 return textfield_->GetRenderText();
20 }
21
22 void TextfieldTestApi::CreateTouchSelectionControllerAndNotifyIt() {
23 textfield_->CreateTouchSelectionControllerAndNotifyIt();
24 }
25
26 void TextfieldTestApi::ResetTouchSelectionController() {
27 textfield_->touch_selection_controller_.reset();
28 }
29
30 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/controls/textfield/textfield_test_api.h ('k') | ui/views/controls/textfield/textfield_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698