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

Unified Diff: ash/aura/wm_window_aura.cc

Issue 2563343002: Remove extension_misc::IsImeMenuExtensionId. (Closed)
Patch Set: Remove kExcludeFromMruKey. Created 4 years 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
« no previous file with comments | « ash/aura/wm_window_aura.h ('k') | ash/common/wm/mru_window_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/aura/wm_window_aura.cc
diff --git a/ash/aura/wm_window_aura.cc b/ash/aura/wm_window_aura.cc
index 17d36875349be633a6dd4164c1e64b9933816c70..6a847e8a0288e98fd8270248a02e091152614b52 100644
--- a/ash/aura/wm_window_aura.cc
+++ b/ash/aura/wm_window_aura.cc
@@ -299,9 +299,6 @@ bool WmWindowAura::GetBoolProperty(WmWindowProperty key) {
case WmWindowProperty::ALWAYS_ON_TOP:
return window_->GetProperty(aura::client::kAlwaysOnTopKey);
- case WmWindowProperty::EXCLUDE_FROM_MRU:
- return window_->GetProperty(aura::client::kExcludeFromMruKey);
-
default:
NOTREACHED();
break;
@@ -745,10 +742,6 @@ void WmWindowAura::Unminimize() {
window_->ClearProperty(aura::client::kRestoreShowStateKey);
}
-void WmWindowAura::SetExcludedFromMru(bool excluded_from_mru) {
- window_->SetProperty(aura::client::kExcludeFromMruKey, excluded_from_mru);
-}
-
std::vector<WmWindow*> WmWindowAura::GetChildren() {
return FromAuraWindows(window_->children());
}
@@ -898,8 +891,6 @@ void WmWindowAura::OnWindowPropertyChanged(aura::Window* window,
wm_property = WmWindowProperty::APP_ICON;
} else if (key == aura::client::kDrawAttentionKey) {
wm_property = WmWindowProperty::DRAW_ATTENTION;
- } else if (key == aura::client::kExcludeFromMruKey) {
- wm_property = WmWindowProperty::EXCLUDE_FROM_MRU;
} else if (key == aura::client::kModalKey) {
wm_property = WmWindowProperty::MODAL_TYPE;
} else if (key == kPanelAttachedKey) {
« no previous file with comments | « ash/aura/wm_window_aura.h ('k') | ash/common/wm/mru_window_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698