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

Unified Diff: chrome/browser/web_applications/app_shim_host_controller.h

Issue 12623005: [mac] App shims (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/web_applications/app_shim_host_controller.h
diff --git a/chrome/browser/web_applications/app_shim_host_controller.h b/chrome/browser/web_applications/app_shim_host_controller.h
new file mode 100644
index 0000000000000000000000000000000000000000..4be6065032d9efd0bb3f61fb15be7f2b65963e1e
--- /dev/null
+++ b/chrome/browser/web_applications/app_shim_host_controller.h
@@ -0,0 +1,31 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_WEB_APPLICATIONS_APP_SHIM_HOST_CONTROLLER_H_
+#define CHROME_BROWSER_WEB_APPLICATIONS_APP_SHIM_HOST_CONTROLLER_H_
+
+#include "base/mac/scoped_cftyperef.h"
+#include "base/memory/weak_ptr.h"
+#include "base/threading/thread.h"
+#include "ipc/ipc_channel_factory.h"
+
+// singleton
Mark Mentovai 2013/03/08 16:50:17 You’re gonna need more docs than this.
jeremya 2013/03/11 02:47:33 I've always liked concise documentation ;)
+class AppShimHostController
+ : public IPC::ChannelFactory::Delegate,
+ public base::SupportsWeakPtr<AppShimHostController> {
+ public:
+ AppShimHostController();
+ virtual ~AppShimHostController();
+
+ private:
+ virtual void OnClientConnected(const IPC::ChannelHandle& handle) OVERRIDE;
+ virtual void OnListenError() OVERRIDE {}
+
+ void InitOnFile();
Mark Mentovai 2013/03/08 16:50:17 InitOnFile’s a funny name because (1) there is no
jeremya 2013/03/11 02:47:33 InitOnFileThread make more sense? :)
Mark Mentovai 2013/03/11 12:40:37 jeremya wrote:
+ void ListenOnIO();
+
+ IPC::ChannelFactory* factory_;
+};
+
+#endif // CHROME_BROWSER_WEB_APPLICATIONS_APP_SHIM_HOST_CONTROLLER_H_

Powered by Google App Engine
This is Rietveld 408576698