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

Unified Diff: ui/aura/test/mus/test_window_tree.cc

Issue 2582823002: WIP: Surface Synchronization System
Patch Set: Only create ClientSurfaceEmbedder if window is visible. Trash it otherwise. Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: ui/aura/test/mus/test_window_tree.cc
diff --git a/ui/aura/test/mus/test_window_tree.cc b/ui/aura/test/mus/test_window_tree.cc
index 12f94b54e99026e7589f79fcc90d90448bbeba98..4ff09eb5748f4e2cbed154cbe288c678adb0a843 100644
--- a/ui/aura/test/mus/test_window_tree.cc
+++ b/ui/aura/test/mus/test_window_tree.cc
@@ -115,7 +115,8 @@ void TestWindowTree::NewWindow(
uint32_t change_id,
uint32_t window_id,
const base::Optional<std::unordered_map<std::string, std::vector<uint8_t>>>&
- properties) {
+ properties,
+ const cc::LocalFrameId& local_frame_id) {
last_new_window_properties_ = properties;
OnChangeReceived(change_id, WindowTreeChangeType::NEW_WINDOW);
}
@@ -135,7 +136,8 @@ void TestWindowTree::DeleteWindow(uint32_t change_id, uint32_t window_id) {
void TestWindowTree::SetWindowBounds(uint32_t change_id,
uint32_t window_id,
- const gfx::Rect& bounds) {
+ const gfx::Rect& bounds,
+ const cc::LocalFrameId& local_frame_id) {
OnChangeReceived(change_id, WindowTreeChangeType::BOUNDS);
}

Powered by Google App Engine
This is Rietveld 408576698