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

Unified Diff: chrome/browser/chromeos/arc/print/arc_print_service.cc

Issue 2741273002: chromeos: Promotes more from WmShell to Shell (Closed)
Patch Set: cleanup Created 3 years, 9 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/arc/print/arc_print_service.cc
diff --git a/chrome/browser/chromeos/arc/print/arc_print_service.cc b/chrome/browser/chromeos/arc/print/arc_print_service.cc
index 68a409e2c69f56d1b47641b927381d4029b51821..e5a21d92b5a76c5eb17b6d2298d97d59fbe51cef 100644
--- a/chrome/browser/chromeos/arc/print/arc_print_service.cc
+++ b/chrome/browser/chromeos/arc/print/arc_print_service.cc
@@ -7,7 +7,7 @@
#include <utility>
#include "ash/common/shell_delegate.h"
-#include "ash/common/wm_shell.h"
+#include "ash/shell.h"
#include "base/files/file.h"
#include "base/files/file_util.h"
#include "base/logging.h"
@@ -48,7 +48,7 @@ void OpenPdf(base::Optional<base::FilePath> file_path) {
return;
GURL gurl = net::FilePathToFileURL(file_path.value());
- ash::WmShell::Get()->delegate()->OpenUrlFromArc(gurl);
+ ash::Shell::Get()->delegate()->OpenUrlFromArc(gurl);
// TODO(poromov) Delete file after printing. (http://crbug.com/629843)
}

Powered by Google App Engine
This is Rietveld 408576698