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

Side by Side Diff: ash/shell.cc

Issue 2904073002: [mus+ash] Removes WmWindow from ash/wm/screen_pinning_controller.h (Closed)
Patch Set: [mus+ash] Removes WmWindow from ash/wm/screen_pinning_controller.h (removes unneeded header) Created 3 years, 6 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/shell.h ('k') | ash/shell_observer.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 (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 "ash/shell.h" 5 #include "ash/shell.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 for (auto& observer : shell_observers_) 511 for (auto& observer : shell_observers_)
512 observer.OnOverviewModeEnded(); 512 observer.OnOverviewModeEnded();
513 } 513 }
514 514
515 void Shell::NotifyFullscreenStateChanged(bool is_fullscreen, 515 void Shell::NotifyFullscreenStateChanged(bool is_fullscreen,
516 WmWindow* root_window) { 516 WmWindow* root_window) {
517 for (auto& observer : shell_observers_) 517 for (auto& observer : shell_observers_)
518 observer.OnFullscreenStateChanged(is_fullscreen, root_window); 518 observer.OnFullscreenStateChanged(is_fullscreen, root_window);
519 } 519 }
520 520
521 void Shell::NotifyPinnedStateChanged(WmWindow* pinned_window) { 521 void Shell::NotifyPinnedStateChanged(aura::Window* pinned_window) {
522 for (auto& observer : shell_observers_) 522 for (auto& observer : shell_observers_)
523 observer.OnPinnedStateChanged(pinned_window); 523 observer.OnPinnedStateChanged(pinned_window);
524 } 524 }
525 525
526 void Shell::NotifyVirtualKeyboardActivated(bool activated, 526 void Shell::NotifyVirtualKeyboardActivated(bool activated,
527 aura::Window* root_window) { 527 aura::Window* root_window) {
528 for (auto& observer : shell_observers_) 528 for (auto& observer : shell_observers_)
529 observer.OnVirtualKeyboardStateChanged(activated, root_window); 529 observer.OnVirtualKeyboardStateChanged(activated, root_window);
530 } 530 }
531 531
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 void Shell::OnPrefServiceInitialized( 1269 void Shell::OnPrefServiceInitialized(
1270 std::unique_ptr<::PrefService> pref_service) { 1270 std::unique_ptr<::PrefService> pref_service) {
1271 if (!instance_) 1271 if (!instance_)
1272 return; 1272 return;
1273 // |pref_service_| is null if can't connect to Chrome (as happens when 1273 // |pref_service_| is null if can't connect to Chrome (as happens when
1274 // running mash outside of chrome --mash and chrome isn't built). 1274 // running mash outside of chrome --mash and chrome isn't built).
1275 pref_service_ = std::move(pref_service); 1275 pref_service_ = std::move(pref_service);
1276 } 1276 }
1277 1277
1278 } // namespace ash 1278 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell.h ('k') | ash/shell_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698