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

Side by Side Diff: components/mus/public/cpp/window.h

Issue 1923983003: Makes WorkspaceLayoutManager use ash/wm/common types (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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_MUS_PUBLIC_CPP_WINDOW_H_ 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_WINDOW_H_
6 #define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_H_ 6 #define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 int local_id_ = -1; 308 int local_id_ = -1;
309 Window* parent_; 309 Window* parent_;
310 Children children_; 310 Children children_;
311 311
312 Window* stacking_target_; 312 Window* stacking_target_;
313 Window* transient_parent_; 313 Window* transient_parent_;
314 Children transient_children_; 314 Children transient_children_;
315 315
316 bool is_modal_; 316 bool is_modal_;
317 317
318 base::ObserverList<WindowObserver> observers_; 318 base::ObserverList<WindowObserver, true> observers_;
319 InputEventHandler* input_event_handler_; 319 InputEventHandler* input_event_handler_;
320 320
321 gfx::Rect bounds_; 321 gfx::Rect bounds_;
322 gfx::Insets client_area_; 322 gfx::Insets client_area_;
323 std::vector<gfx::Rect> additional_client_areas_; 323 std::vector<gfx::Rect> additional_client_areas_;
324 324
325 mojom::ViewportMetricsPtr viewport_metrics_; 325 mojom::ViewportMetricsPtr viewport_metrics_;
326 326
327 bool visible_; 327 bool visible_;
328 float opacity_; 328 float opacity_;
(...skipping 16 matching lines...) Expand all
345 }; 345 };
346 346
347 std::map<const void*, Value> prop_map_; 347 std::map<const void*, Value> prop_map_;
348 348
349 DISALLOW_COPY_AND_ASSIGN(Window); 349 DISALLOW_COPY_AND_ASSIGN(Window);
350 }; 350 };
351 351
352 } // namespace mus 352 } // namespace mus
353 353
354 #endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_H_ 354 #endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_H_
OLDNEW
« ash/wm/workspace/workspace_layout_manager.h ('K') | « components/mus/public/cpp/lib/window_private.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698