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

Unified Diff: chrome/browser/chromeos/extensions/wallpaper_private_api.cc

Issue 2721153004: Remove ash_util namespace (Closed)
Patch Set: Created 3 years, 10 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: chrome/browser/chromeos/extensions/wallpaper_private_api.cc
diff --git a/chrome/browser/chromeos/extensions/wallpaper_private_api.cc b/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
index ee1e5d7e246e034b150c4d5c7e5e3dd6c9735020..a028cb62691dec6f19557f9abce8dbf1f6cea3a5 100644
--- a/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
+++ b/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
@@ -173,7 +173,7 @@ WindowStateManager* g_window_state_manager = NULL;
// static
void WindowStateManager::MinimizeInactiveWindows(
const std::string& user_id_hash) {
- if (ash_util::IsRunningInMash()) {
+ if (IsRunningInMash()) {
NOTIMPLEMENTED();
return;
}
@@ -186,7 +186,7 @@ void WindowStateManager::MinimizeInactiveWindows(
// static
void WindowStateManager::RestoreWindows(const std::string& user_id_hash) {
- if (ash_util::IsRunningInMash()) {
+ if (IsRunningInMash()) {
NOTIMPLEMENTED();
return;
}

Powered by Google App Engine
This is Rietveld 408576698