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

Side by Side Diff: ui/views/mus/screen_mus.cc

Issue 2009073003: Move mojo/converters/geometry -> ui/gfx/geometry/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/mus/screen_mus.h" 5 #include "ui/views/mus/screen_mus.h"
6 6
7 #include "mojo/converters/geometry/geometry_type_converters.h"
8 #include "services/shell/public/cpp/connection.h" 7 #include "services/shell/public/cpp/connection.h"
9 #include "services/shell/public/cpp/connector.h" 8 #include "services/shell/public/cpp/connector.h"
10 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
11 #include "ui/display/display_finder.h" 10 #include "ui/display/display_finder.h"
12 #include "ui/display/display_observer.h" 11 #include "ui/display/display_observer.h"
12 #include "ui/gfx/geometry/mojo/geometry_type_converters.h"
13 #include "ui/mojo/display/display_type_converters.h" 13 #include "ui/mojo/display/display_type_converters.h"
14 #include "ui/views/mus/screen_mus_delegate.h" 14 #include "ui/views/mus/screen_mus_delegate.h"
15 #include "ui/views/mus/window_manager_frame_values.h" 15 #include "ui/views/mus/window_manager_frame_values.h"
16 16
17 #ifdef NOTIMPLEMENTED 17 #ifdef NOTIMPLEMENTED
18 #undef NOTIMPLEMENTED 18 #undef NOTIMPLEMENTED
19 #define NOTIMPLEMENTED() DVLOG(1) << "notimplemented" 19 #define NOTIMPLEMENTED() DVLOG(1) << "notimplemented"
20 #endif 20 #endif
21 21
22 namespace mojo { 22 namespace mojo {
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 delegate_->OnWindowManagerFrameValuesChanged(); 187 delegate_->OnWindowManagerFrameValuesChanged();
188 } 188 }
189 } 189 }
190 } 190 }
191 191
192 void ScreenMus::OnDisplayRemoved(int64_t id) { 192 void ScreenMus::OnDisplayRemoved(int64_t id) {
193 display_list_.RemoveDisplay(id); 193 display_list_.RemoveDisplay(id);
194 } 194 }
195 195
196 } // namespace views 196 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698