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

Side by Side Diff: ash/mus/window_manager.cc

Issue 2568303006: aura-mus: Implement Deactivate(). (Closed)
Patch Set: Add comment. 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 | « ash/mus/window_manager.h ('k') | mash/simple_wm/simple_wm.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ash/mus/window_manager.h" 5 #include "ash/mus/window_manager.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <utility> 9 #include <utility>
10 10
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 aura::Window* window, 497 aura::Window* window,
498 const gfx::Insets& insets, 498 const gfx::Insets& insets,
499 const std::vector<gfx::Rect>& additional_client_areas) { 499 const std::vector<gfx::Rect>& additional_client_areas) {
500 NonClientFrameController* non_client_frame_controller = 500 NonClientFrameController* non_client_frame_controller =
501 NonClientFrameController::Get(window); 501 NonClientFrameController::Get(window);
502 if (!non_client_frame_controller) 502 if (!non_client_frame_controller)
503 return; 503 return;
504 non_client_frame_controller->SetClientArea(insets, additional_client_areas); 504 non_client_frame_controller->SetClientArea(insets, additional_client_areas);
505 } 505 }
506 506
507 bool WindowManager::IsWindowActive(aura::Window* window) {
508 return activation_client()->GetActiveWindow() == window;
509 }
510
511 void WindowManager::OnWmDeactivateWindow(aura::Window* window) {
512 activation_client()->DeactivateWindow(window);
513 }
514
507 } // namespace mus 515 } // namespace mus
508 } // namespace ash 516 } // namespace ash
OLDNEW
« no previous file with comments | « ash/mus/window_manager.h ('k') | mash/simple_wm/simple_wm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698