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

Unified Diff: ash/mus/shell_delegate_mus.cc

Issue 1890583002: Renaming App List Shower to App List Presenter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix. Created 4 years, 8 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
« no previous file with comments | « ash/mus/shell_delegate_mus.h ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/shell_delegate_mus.cc
diff --git a/ash/mus/shell_delegate_mus.cc b/ash/mus/shell_delegate_mus.cc
index 080212dc8fa1126d9ca7313ced7e0888d5f03c65..8aa0d332dff216baed317a920f1255d8113a37c3 100644
--- a/ash/mus/shell_delegate_mus.cc
+++ b/ash/mus/shell_delegate_mus.cc
@@ -14,7 +14,7 @@
#include "ash/system/tray/default_system_tray_delegate.h"
#include "base/strings/string16.h"
#include "components/user_manager/user_info_impl.h"
-#include "ui/app_list/shower/app_list_shower.h"
+#include "ui/app_list/presenter/app_list_presenter.h"
#include "ui/gfx/image/image.h"
namespace ash {
@@ -94,12 +94,12 @@ class MediaDelegateStub : public MediaDelegate {
DISALLOW_COPY_AND_ASSIGN(MediaDelegateStub);
};
-class AppListShowerMus : public app_list::AppListShower {
+class AppListPresenterMus : public app_list::AppListPresenter {
public:
- AppListShowerMus() {}
- ~AppListShowerMus() override {}
+ AppListPresenterMus() {}
+ ~AppListPresenterMus() override {}
- // app_list::AppListShower:
+ // app_list::AppListPresenter:
void Show(aura::Window* window) override { NOTIMPLEMENTED(); }
void Dismiss() override { NOTIMPLEMENTED(); }
bool IsVisible() const override {
@@ -112,12 +112,13 @@ class AppListShowerMus : public app_list::AppListShower {
}
private:
- DISALLOW_COPY_AND_ASSIGN(AppListShowerMus);
+ DISALLOW_COPY_AND_ASSIGN(AppListPresenterMus);
};
} // namespace
-ShellDelegateMus::ShellDelegateMus() : app_list_shower_(new AppListShowerMus) {}
+ShellDelegateMus::ShellDelegateMus()
+ : app_list_presenter_(new AppListPresenterMus) {}
ShellDelegateMus::~ShellDelegateMus() {}
@@ -186,8 +187,8 @@ void ShellDelegateMus::OpenUrl(const GURL& url) {
NOTIMPLEMENTED();
}
-app_list::AppListShower* ShellDelegateMus::GetAppListShower() {
- return app_list_shower_.get();
+app_list::AppListPresenter* ShellDelegateMus::GetAppListPresenter() {
+ return app_list_presenter_.get();
}
ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) {
« no previous file with comments | « ash/mus/shell_delegate_mus.h ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698