| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/client/default_capture_client.h" | 5 #include "ui/aura/client/default_capture_client.h" |
| 6 | 6 |
| 7 #include "ui/aura/root_window.h" | 7 #include "ui/aura/root_window.h" |
| 8 | 8 |
| 9 namespace aura { | 9 namespace aura { |
| 10 namespace client { | 10 namespace client { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 return; | 40 return; |
| 41 SetCapture(NULL); | 41 SetCapture(NULL); |
| 42 } | 42 } |
| 43 | 43 |
| 44 Window* DefaultCaptureClient::GetCaptureWindow() { | 44 Window* DefaultCaptureClient::GetCaptureWindow() { |
| 45 return capture_window_; | 45 return capture_window_; |
| 46 } | 46 } |
| 47 | 47 |
| 48 } // namespace client | 48 } // namespace client |
| 49 } // namespace aura | 49 } // namespace aura |
| OLD | NEW |