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

Side by Side Diff: ui/aura/mus/capture_synchronizer.cc

Issue 2626013005: Change CaptureSynchronizer and PointerWatcherEventRouter to support multiple CaptureClients. (Closed)
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « ui/aura/mus/capture_synchronizer.h ('k') | ui/aura/mus/window_tree_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/aura/mus/capture_synchronizer.h" 5 #include "ui/aura/mus/capture_synchronizer.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "services/ui/public/interfaces/window_tree.mojom.h" 8 #include "services/ui/public/interfaces/window_tree.mojom.h"
9 #include "ui/aura/client/capture_client.h" 9 #include "ui/aura/client/capture_client.h"
10 #include "ui/aura/mus/capture_synchronizer_delegate.h" 10 #include "ui/aura/mus/capture_synchronizer_delegate.h"
11 #include "ui/aura/mus/window_mus.h" 11 #include "ui/aura/mus/window_mus.h"
12 #include "ui/aura/window.h" 12 #include "ui/aura/window.h"
13 #include "ui/aura/window_property.h"
13 14
14 namespace aura { 15 namespace aura {
15 16
16 CaptureSynchronizer::CaptureSynchronizer(CaptureSynchronizerDelegate* delegate, 17 CaptureSynchronizer::CaptureSynchronizer(CaptureSynchronizerDelegate* delegate,
17 ui::mojom::WindowTree* window_tree, 18 ui::mojom::WindowTree* window_tree)
18 client::CaptureClient* capture_client) 19 : delegate_(delegate), window_tree_(window_tree) {}
19 : delegate_(delegate),
20 window_tree_(window_tree),
21 capture_client_(capture_client) {
22 capture_client_->AddObserver(this);
23 }
24 20
25 CaptureSynchronizer::~CaptureSynchronizer() { 21 CaptureSynchronizer::~CaptureSynchronizer() {}
26 SetCaptureWindow(nullptr);
27 capture_client_->RemoveObserver(this);
28 }
29 22
30 void CaptureSynchronizer::SetCaptureFromServer(WindowMus* window) { 23 void CaptureSynchronizer::SetCaptureFromServer(WindowMus* window) {
31 if (window == capture_window_) 24 if (window == capture_window_)
32 return; 25 return;
33 26
34 DCHECK(!setting_capture_); 27 DCHECK(!setting_capture_);
35 // Don't immediately set |capture_client_|. It's possible the change will be 28 // Don't immediately set capture client. It's possible the change will be
36 // rejected. 29 // rejected.
37 base::AutoReset<bool> capture_reset(&setting_capture_, true); 30 base::AutoReset<bool> capture_reset(&setting_capture_, true);
38 base::AutoReset<WindowMus*> window_setting_capture_to_reset( 31 base::AutoReset<WindowMus*> window_setting_capture_to_reset(
39 &window_setting_capture_to_, window); 32 &window_setting_capture_to_, window);
40 capture_client_->SetCapture(window ? window->GetWindow() : nullptr); 33 client::CaptureClient* capture_client =
34 window ? client::GetCaptureClient(window->GetWindow()->GetRootWindow())
35 : client::GetCaptureClient(
36 capture_window_->GetWindow()->GetRootWindow());
37 capture_client->SetCapture(window ? window->GetWindow() : nullptr);
38 }
39
40 void CaptureSynchronizer::Attach(client::CaptureClient* capture_client) {
41 if (capture_client)
42 capture_client->AddObserver(this);
41 } 43 }
42 44
43 void CaptureSynchronizer::SetCaptureWindow(WindowMus* window) { 45 void CaptureSynchronizer::SetCaptureWindow(WindowMus* window) {
44 if (capture_window_) 46 if (capture_window_)
45 capture_window_->GetWindow()->RemoveObserver(this); 47 capture_window_->GetWindow()->RemoveObserver(this);
46 capture_window_ = window; 48 capture_window_ = window;
47 if (capture_window_) 49 if (capture_window_ && !capture_window_->GetWindow()->HasObserver(this))
48 capture_window_->GetWindow()->AddObserver(this); 50 capture_window_->GetWindow()->AddObserver(this);
49 } 51 }
50 52
53 void CaptureSynchronizer::OnWindowPropertyChanged(Window* window,
54 const void* key,
55 intptr_t old) {
56 if (key == client::kRootWindowCaptureClientKey)
57 Attach(client::GetCaptureClient(window));
sadrul 2017/01/18 22:14:44 So, this sort of suck a little bit. I know this is
riajiang 2017/01/20 20:14:28 As discussed offline, CaptureSynchronizer has to b
58 }
59
51 void CaptureSynchronizer::OnWindowDestroying(Window* window) { 60 void CaptureSynchronizer::OnWindowDestroying(Window* window) {
52 // The CaptureClient implementation handles resetting capture when a window 61 // The CaptureClient implementation handles resetting capture when a window
53 // is destroyed, but because of observer ordering this may be called first. 62 // is destroyed, but because of observer ordering this may be called first.
54 DCHECK_EQ(window, capture_window_->GetWindow()); 63 if (capture_window_) {
55 SetCaptureWindow(nullptr); 64 DCHECK_EQ(window, capture_window_->GetWindow());
65 SetCaptureWindow(nullptr);
66 }
56 // The server will release capture when a window is destroyed, so no need 67 // The server will release capture when a window is destroyed, so no need
57 // explicitly schedule a change. 68 // explicitly schedule a change.
58 } 69 }
59 70
60 void CaptureSynchronizer::OnCaptureChanged(Window* lost_capture, 71 void CaptureSynchronizer::OnCaptureChanged(Window* lost_capture,
61 Window* gained_capture) { 72 Window* gained_capture) {
62 if (!gained_capture && !capture_window_) 73 if (!gained_capture && !capture_window_)
63 return; // Happens if the window is deleted during notification. 74 return; // Happens if the window is deleted during notification.
64 75
65 WindowMus* gained_capture_mus = WindowMus::Get(gained_capture); 76 WindowMus* gained_capture_mus = WindowMus::Get(gained_capture);
66 if (setting_capture_ && gained_capture_mus == window_setting_capture_to_) { 77 if (setting_capture_ && gained_capture_mus == window_setting_capture_to_) {
67 SetCaptureWindow(gained_capture_mus); 78 SetCaptureWindow(gained_capture_mus);
68 return; 79 return;
69 } 80 }
70 81
71 const uint32_t change_id = 82 const uint32_t change_id =
72 delegate_->CreateChangeIdForCapture(capture_window_); 83 delegate_->CreateChangeIdForCapture(capture_window_);
73 WindowMus* old_capture_window = capture_window_; 84 WindowMus* old_capture_window = capture_window_;
74 SetCaptureWindow(gained_capture_mus); 85 SetCaptureWindow(gained_capture_mus);
75 if (capture_window_) 86 if (capture_window_)
76 window_tree_->SetCapture(change_id, capture_window_->server_id()); 87 window_tree_->SetCapture(change_id, capture_window_->server_id());
77 else 88 else
78 window_tree_->ReleaseCapture(change_id, old_capture_window->server_id()); 89 window_tree_->ReleaseCapture(change_id, old_capture_window->server_id());
79 } 90 }
80 91
81 } // namespace aura 92 } // namespace aura
OLDNEW
« no previous file with comments | « ui/aura/mus/capture_synchronizer.h ('k') | ui/aura/mus/window_tree_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698