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

Unified Diff: athena/extensions/shell/athena_shell_app_window_client.h

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
Index: athena/extensions/shell/athena_shell_app_window_client.h
diff --git a/athena/extensions/shell/athena_shell_apps_client.h b/athena/extensions/shell/athena_shell_app_window_client.h
similarity index 58%
rename from athena/extensions/shell/athena_shell_apps_client.h
rename to athena/extensions/shell/athena_shell_app_window_client.h
index 56feab438d77efc517b93b4c340a3dc4de60bbc3..d8ff00d287ce19728e335407235de3300653e1d4 100644
--- a/athena/extensions/shell/athena_shell_apps_client.h
+++ b/athena/extensions/shell/athena_shell_app_window_client.h
@@ -2,21 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef ATHENA_EXTENSIONS_SHELL_ATHENA_SHELL_APPS_CLIENT_H_
-#define ATHENA_EXTENSIONS_SHELL_ATHENA_SHELL_APPS_CLIENT_H_
+#ifndef ATHENA_EXTENSIONS_SHELL_ATHENA_SHELL_APP_WINDOW_CLIENT_H_
+#define ATHENA_EXTENSIONS_SHELL_ATHENA_SHELL_APP_WINDOW_CLIENT_H_
-#include "athena/extensions/athena_apps_client_base.h"
+#include "athena/extensions/athena_app_window_client_base.h"
#include "base/macros.h"
namespace athena {
-class AthenaShellAppsClient : public AthenaAppsClientBase {
+class AthenaShellAppWindowClient : public AthenaAppWindowClientBase {
public:
- AthenaShellAppsClient(content::BrowserContext* context);
- virtual ~AthenaShellAppsClient();
+ AthenaShellAppWindowClient(content::BrowserContext* context);
+ virtual ~AthenaShellAppWindowClient();
private:
- // extensions::AppsClient
+ // extensions::AppWindowClient
virtual std::vector<content::BrowserContext*> GetLoadedBrowserContexts()
OVERRIDE;
virtual extensions::AppWindow* CreateAppWindow(
@@ -28,9 +28,9 @@ class AthenaShellAppsClient : public AthenaAppsClientBase {
content::BrowserContext* context_;
- DISALLOW_COPY_AND_ASSIGN(AthenaShellAppsClient);
+ DISALLOW_COPY_AND_ASSIGN(AthenaShellAppWindowClient);
};
} // namespace athena
-#endif // ATHENA_EXTENSIONS_SHELL_ATHENA_SHELL_APPS_CLIENT_H_
+#endif // ATHENA_EXTENSIONS_SHELL_ATHENA_SHELL_APP_WINDOW_CLIENT_H_
« no previous file with comments | « athena/extensions/chrome/extensions_delegate_impl.cc ('k') | athena/extensions/shell/athena_shell_app_window_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698