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

Unified Diff: mash/wm/bridge/wm_window_mus.cc

Issue 1997633004: Removes |old| parameter from OnWindowPropertyChanged() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: mash/wm/bridge/wm_window_mus.cc
diff --git a/mash/wm/bridge/wm_window_mus.cc b/mash/wm/bridge/wm_window_mus.cc
index da8ca9ed581699da1a6938be6c34056c2d68afee..1cffa9d134918397c5e28ac7637a6531b9d0a1eb 100644
--- a/mash/wm/bridge/wm_window_mus.cc
+++ b/mash/wm/bridge/wm_window_mus.cc
@@ -587,11 +587,12 @@ void WmWindowMus::OnWindowSharedPropertyChanged(
const std::vector<uint8_t>* new_data) {
if (name == mus::mojom::WindowManager::kShowState_Property) {
GetWindowState()->OnWindowShowStateChanged();
+ return;
sky 2016/05/19 23:00:11 I accidentally removed this when addressing feedba
}
if (name == mus::mojom::WindowManager::kAlwaysOnTop_Property) {
FOR_EACH_OBSERVER(ash::wm::WmWindowObserver, observers_,
OnWindowPropertyChanged(
- this, ash::wm::WmWindowProperty::ALWAYS_ON_TOP, 0u));
+ this, ash::wm::WmWindowProperty::ALWAYS_ON_TOP));
return;
}
« ash/wm/aura/wm_window_aura.cc ('K') | « ash/wm/common/workspace/workspace_layout_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698