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

Unified Diff: ui/views/mus/screen_mus.h

Issue 2505133003: Mojo C++ bindings: switch part of the services/ui/public/interfaces mojom target to use STL types. (Closed)
Patch Set: Merge branch 'master' into c139_wrappers_ui Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/ui/ws/window_server_test_impl.cc ('k') | ui/views/mus/screen_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/screen_mus.h
diff --git a/ui/views/mus/screen_mus.h b/ui/views/mus/screen_mus.h
index 744d4ab4d039dbd455db913163d261fd8bc33d4e..a2df7e61e73d98df93e667862c063c247a4bc6b0 100644
--- a/ui/views/mus/screen_mus.h
+++ b/ui/views/mus/screen_mus.h
@@ -36,11 +36,11 @@ class VIEWS_MUS_EXPORT ScreenMus
aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override;
// ui::mojom::DisplayManager:
- void OnDisplays(mojo::Array<ui::mojom::WsDisplayPtr> ws_displays,
+ void OnDisplays(std::vector<ui::mojom::WsDisplayPtr> ws_displays,
int64_t primary_display_id,
int64_t internal_display_id) override;
void OnDisplaysChanged(
- mojo::Array<ui::mojom::WsDisplayPtr> ws_displays) override;
+ std::vector<ui::mojom::WsDisplayPtr> ws_displays) override;
void OnDisplayRemoved(int64_t display_id) override;
void OnPrimaryDisplayChanged(int64_t primary_display_id) override;
« no previous file with comments | « services/ui/ws/window_server_test_impl.cc ('k') | ui/views/mus/screen_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698