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

Side by Side Diff: ui/views/widget/desktop_aura/desktop_window_tree_host_x11.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_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_
7 7
8 #include <stddef.h>
9 #include <stdint.h>
8 #include <X11/extensions/shape.h> 10 #include <X11/extensions/shape.h>
9 #include <X11/Xlib.h> 11 #include <X11/Xlib.h>
10 #include <X11/Xutil.h> 12 #include <X11/Xutil.h>
11 13
12 #include "base/basictypes.h"
13 #include "base/cancelable_callback.h" 14 #include "base/cancelable_callback.h"
15 #include "base/macros.h"
14 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
15 #include "base/observer_list.h" 17 #include "base/observer_list.h"
16 #include "ui/aura/scoped_window_targeter.h" 18 #include "ui/aura/scoped_window_targeter.h"
17 #include "ui/aura/window_tree_host.h" 19 #include "ui/aura/window_tree_host.h"
18 #include "ui/base/cursor/cursor_loader_x11.h" 20 #include "ui/base/cursor/cursor_loader_x11.h"
19 #include "ui/events/platform/platform_event_dispatcher.h" 21 #include "ui/events/platform/platform_event_dispatcher.h"
20 #include "ui/gfx/geometry/insets.h" 22 #include "ui/gfx/geometry/insets.h"
21 #include "ui/gfx/geometry/rect.h" 23 #include "ui/gfx/geometry/rect.h"
22 #include "ui/gfx/geometry/size.h" 24 #include "ui/gfx/geometry/size.h"
23 #include "ui/gfx/x/x11_atom_cache.h" 25 #include "ui/gfx/x/x11_atom_cache.h"
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 XID modal_dialog_xid_; 365 XID modal_dialog_xid_;
364 366
365 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_; 367 base::WeakPtrFactory<DesktopWindowTreeHostX11> close_widget_factory_;
366 368
367 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); 369 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11);
368 }; 370 };
369 371
370 } // namespace views 372 } // namespace views
371 373
372 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ 374 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698