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

Unified Diff: athena/extensions/athena_app_window_client_base.h

Issue 583583008: Rename AppsClient -> AppWindowClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac & test 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/athena_app_window_client_base.h
diff --git a/athena/extensions/athena_apps_client_base.h b/athena/extensions/athena_app_window_client_base.h
similarity index 50%
rename from athena/extensions/athena_apps_client_base.h
rename to athena/extensions/athena_app_window_client_base.h
index 3a8d663086954a364d5b418a37825fdd62e6ae1c..808a95b14d86ca47b3d4f10cbb67671e3516b36a 100644
--- a/athena/extensions/athena_apps_client_base.h
+++ b/athena/extensions/athena_app_window_client_base.h
@@ -2,31 +2,31 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef ATHENA_EXTENSIONS_ATHENA_APPS_CLIENT_BASE_H_
-#define ATHENA_EXTENSIONS_ATHENA_APPS_CLIENT_BASE_H_
+#ifndef ATHENA_EXTENSIONS_ATHENA_APP_WINDOW_CLIENT_BASE_H_
+#define ATHENA_EXTENSIONS_ATHENA_APP_WINDOW_CLIENT_BASE_H_
-#include "extensions/browser/app_window/apps_client.h"
#include "base/macros.h"
+#include "extensions/browser/app_window/app_window_client.h"
namespace athena {
-// Athena's base impl of AppsClient.
-class AthenaAppsClientBase : public extensions::AppsClient {
+// Athena's base impl of AppWindowClient.
+class AthenaAppWindowClientBase : public extensions::AppWindowClient {
public:
- AthenaAppsClientBase();
- virtual ~AthenaAppsClientBase();
+ AthenaAppWindowClientBase();
+ virtual ~AthenaAppWindowClientBase();
private:
- // extensions::AppsClient
+ // extensions::AppWindowClient
virtual extensions::NativeAppWindow* CreateNativeAppWindow(
extensions::AppWindow* window,
const extensions::AppWindow::CreateParams& params) OVERRIDE;
virtual void IncrementKeepAliveCount() OVERRIDE;
virtual void DecrementKeepAliveCount() OVERRIDE;
- DISALLOW_COPY_AND_ASSIGN(AthenaAppsClientBase);
+ DISALLOW_COPY_AND_ASSIGN(AthenaAppWindowClientBase);
};
} // namespace athena
-#endif // ATHENA_EXTENSIONS_ATHENA_APPS_CLIENT_BASE_H_
+#endif // ATHENA_EXTENSIONS_ATHENA_APP_WINDOW_CLIENT_BASE_H_

Powered by Google App Engine
This is Rietveld 408576698