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

Unified Diff: chrome/browser/browser_process_impl.h

Issue 12623005: [mac] App shims (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments 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/browser_process_impl.h
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 8487798f3f8bed5870d7e9816077205f619c9a83..d1063ddb7cd3100cb9eecde5c75eab7fef41055b 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -45,6 +45,10 @@ class PolicyService;
class MetroViewerProcessHost;
#endif
+#if defined(OS_MACOSX)
+class AppShimHostController;
+#endif
+
// Real implementation of BrowserProcess that creates and returns the services.
class BrowserProcessImpl : public BrowserProcess,
public base::NonThreadSafe {
@@ -296,6 +300,10 @@ class BrowserProcessImpl : public BrowserProcess,
scoped_ptr<MetroViewerProcessHost> metro_viewer_process_host_;
#endif
+#if defined(OS_MACOSX)
+ scoped_ptr<AppShimHostController> app_shim_host_controller_;
jeremy 2013/03/11 06:49:59 Comment.
jeremya 2013/03/11 08:42:26 Done, though I'm not sure how much info I should a
+#endif
+
// TODO(eroman): Remove this when done debugging 113031. This tracks
// the callstack which released the final module reference count.
base::debug::StackTrace release_last_reference_callstack_;

Powered by Google App Engine
This is Rietveld 408576698