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

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

Issue 2718333002: Move ash_util functions from 'chrome' namespace to 'ash_util' namespace (Closed)
Patch Set: Rebase after https://codereview.chromium.org/2721883002 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 852a8269cdefb054828c98c679399e786c75f4f0..ee1e5d7e246e034b150c4d5c7e5e3dd6c9735020 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 (chrome::IsRunningInMash()) {
+ if (ash_util::IsRunningInMash()) {
NOTIMPLEMENTED();
return;
}
@@ -186,7 +186,7 @@ void WindowStateManager::MinimizeInactiveWindows(
// static
void WindowStateManager::RestoreWindows(const std::string& user_id_hash) {
- if (chrome::IsRunningInMash()) {
+ if (ash_util::IsRunningInMash()) {
NOTIMPLEMENTED();
return;
}

Powered by Google App Engine
This is Rietveld 408576698