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

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

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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 #ifndef UI_VIEWS_VIEWS_DELEGATE_H_ 5 #ifndef UI_VIEWS_VIEWS_DELEGATE_H_
6 #define UI_VIEWS_VIEWS_DELEGATE_H_ 6 #define UI_VIEWS_VIEWS_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
11 #include <windows.h> 11 #include <windows.h>
12 #endif 12 #endif
13 13
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/location.h" 15 #include "base/location.h"
16 #include "base/macros.h"
16 #include "base/strings/string16.h" 17 #include "base/strings/string16.h"
18 #include "build/build_config.h"
17 #include "ui/accessibility/ax_enums.h" 19 #include "ui/accessibility/ax_enums.h"
18 #include "ui/base/ui_base_types.h" 20 #include "ui/base/ui_base_types.h"
19 #include "ui/gfx/native_widget_types.h" 21 #include "ui/gfx/native_widget_types.h"
20 #include "ui/views/views_export.h" 22 #include "ui/views/views_export.h"
21 #include "ui/views/widget/widget.h" 23 #include "ui/views/widget/widget.h"
22 24
23 namespace base { 25 namespace base {
24 class TaskRunner; 26 class TaskRunner;
25 class TimeDelta; 27 class TimeDelta;
26 } 28 }
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 #endif 204 #endif
203 205
204 NativeWidgetFactory native_widget_factory_; 206 NativeWidgetFactory native_widget_factory_;
205 207
206 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate); 208 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate);
207 }; 209 };
208 210
209 } // namespace views 211 } // namespace views
210 212
211 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ 213 #endif // UI_VIEWS_VIEWS_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698