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

Unified Diff: athena/extensions/shell/extensions_delegate_impl.cc

Issue 583583008: Rename AppsClient -> AppWindowClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix a bit more naming Created 6 years, 3 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 | « athena/extensions/shell/athena_shell_apps_client.cc ('k') | athena/main/athena_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/extensions/shell/extensions_delegate_impl.cc
diff --git a/athena/extensions/shell/extensions_delegate_impl.cc b/athena/extensions/shell/extensions_delegate_impl.cc
index a7cbcdf84a163eba88cc4e0cccc3be0e521fd671..bdd27c3979bb1d70cc59b3164d9cf51bd0ed157b 100644
--- a/athena/extensions/shell/extensions_delegate_impl.cc
+++ b/athena/extensions/shell/extensions_delegate_impl.cc
@@ -4,7 +4,7 @@
#include "athena/extensions/public/extensions_delegate.h"
-#include "athena/extensions/shell/athena_shell_apps_client.h"
+#include "athena/extensions/shell/athena_shell_app_window_client.h"
#include "base/macros.h"
#include "extensions/common/extension_set.h"
#include "extensions/shell/browser/shell_extension_system.h"
@@ -18,11 +18,11 @@ class ShellExtensionsDelegate : public ExtensionsDelegate {
: context_(context),
extension_system_(static_cast<extensions::ShellExtensionSystem*>(
extensions::ExtensionSystem::Get(context))),
- apps_client_(context) {
- extensions::AppsClient::Set(&apps_client_);
+ app_window_client_(context) {
+ extensions::AppWindowClient::Set(&app_window_client_);
}
- virtual ~ShellExtensionsDelegate() { extensions::AppsClient::Set(NULL); }
+ virtual ~ShellExtensionsDelegate() { extensions::AppWindowClient::Set(NULL); }
private:
// ExtensionsDelegate:
@@ -46,7 +46,7 @@ class ShellExtensionsDelegate : public ExtensionsDelegate {
extensions::ShellExtensionSystem* extension_system_;
extensions::ExtensionSet shell_extensions_;
- AthenaShellAppsClient apps_client_;
+ AthenaShellAppWindowClient app_window_client_;
DISALLOW_COPY_AND_ASSIGN(ShellExtensionsDelegate);
};
« no previous file with comments | « athena/extensions/shell/athena_shell_apps_client.cc ('k') | athena/main/athena_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698