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

Side by Side Diff: ui/aura/desktop_host_linux.cc

Issue 7886042: Move Aura to UI subdir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "aura/desktop_host.h" 5 #include "ui/aura/desktop_host.h"
6 6
7 #include "aura/desktop.h"
8 #include "aura/event.h"
9 #include "base/message_loop.h" 7 #include "base/message_loop.h"
10 #include "base/message_pump_x.h" 8 #include "base/message_pump_x.h"
9 #include "ui/aura/desktop.h"
10 #include "ui/aura/event.h"
11 11
12 #include <X11/Xlib.h> 12 #include <X11/Xlib.h>
13 13
14 namespace aura { 14 namespace aura {
15 15
16 namespace { 16 namespace {
17 17
18 class DesktopHostLinux : public DesktopHost { 18 class DesktopHostLinux : public DesktopHost {
19 public: 19 public:
20 explicit DesktopHostLinux(const gfx::Rect& bounds); 20 explicit DesktopHostLinux(const gfx::Rect& bounds);
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 113 }
114 114
115 } // namespace 115 } // namespace
116 116
117 // static 117 // static
118 DesktopHost* DesktopHost::Create(const gfx::Rect& bounds) { 118 DesktopHost* DesktopHost::Create(const gfx::Rect& bounds) {
119 return new DesktopHostLinux(bounds); 119 return new DesktopHostLinux(bounds);
120 } 120 }
121 121
122 } // namespace aura 122 } // namespace aura
OLDNEW
« ui/aura/aura.gyp ('K') | « ui/aura/desktop_host.h ('k') | ui/aura/desktop_host_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698