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

Side by Side Diff: ui/views/views_delegate.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/views_delegate.h" 5 #include "ui/views/views_delegate.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "build/build_config.h"
8 #include "ui/views/views_touch_selection_controller_factory.h" 9 #include "ui/views/views_touch_selection_controller_factory.h"
9 #include "ui/views/widget/native_widget_private.h" 10 #include "ui/views/widget/native_widget_private.h"
10 11
11 #if defined(USE_AURA) 12 #if defined(USE_AURA)
12 #include "ui/views/touchui/touch_selection_menu_runner_views.h" 13 #include "ui/views/touchui/touch_selection_menu_runner_views.h"
13 #endif 14 #endif
14 15
15 namespace views { 16 namespace views {
16 namespace { 17 namespace {
17 18
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 views_delegate = this; 127 views_delegate = this;
127 128
128 ui::TouchEditingControllerFactory::SetInstance(views_tsc_factory_.get()); 129 ui::TouchEditingControllerFactory::SetInstance(views_tsc_factory_.get());
129 130
130 #if defined(USE_AURA) 131 #if defined(USE_AURA)
131 touch_selection_menu_runner_.reset(new TouchSelectionMenuRunnerViews()); 132 touch_selection_menu_runner_.reset(new TouchSelectionMenuRunnerViews());
132 #endif 133 #endif
133 } 134 }
134 135
135 } // namespace views 136 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698