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

Side by Side Diff: ui/views/mus/native_widget_mus.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_MUS_NATIVE_WIDGET_MUS_H_ 5 #ifndef UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_
6 #define UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ 6 #define UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_
7 7
8 #include <stdint.h>
9
8 #include <map> 10 #include <map>
9 #include <string> 11 #include <string>
10 12
13 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
13 #include "components/mus/public/interfaces/window_manager.mojom.h" 16 #include "components/mus/public/interfaces/window_manager.mojom.h"
14 #include "ui/aura/window_delegate.h" 17 #include "ui/aura/window_delegate.h"
15 #include "ui/aura/window_tree_host_observer.h" 18 #include "ui/aura/window_tree_host_observer.h"
16 #include "ui/platform_window/platform_window_delegate.h" 19 #include "ui/platform_window/platform_window_delegate.h"
17 #include "ui/views/mus/mus_export.h" 20 #include "ui/views/mus/mus_export.h"
18 #include "ui/views/widget/native_widget_private.h" 21 #include "ui/views/widget/native_widget_private.h"
19 22
20 namespace aura { 23 namespace aura {
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; 221 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_;
219 scoped_ptr<aura::client::WindowTreeClient> window_tree_client_; 222 scoped_ptr<aura::client::WindowTreeClient> window_tree_client_;
220 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_; 223 base::WeakPtrFactory<NativeWidgetMus> close_widget_factory_;
221 224
222 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus); 225 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMus);
223 }; 226 };
224 227
225 } // namespace views 228 } // namespace views
226 229
227 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_ 230 #endif // UI_VIEWS_MUS_NATIVE_WIDGET_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698