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

Unified Diff: chrome/browser/chrome_browser_main_extra_parts_aura.h

Issue 10081022: Aura/ash split: Remove hacks and get chrome linking without ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move the check to ash/. Created 8 years, 8 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/chrome_browser_main_extra_parts_aura.h
diff --git a/chrome/browser/chrome_browser_main_extra_parts_aura.h b/chrome/browser/chrome_browser_main_extra_parts_aura.h
index e92a6792350e8672f4fc5b9065025e88d12791d6..4fe4e7e890926c369c71b518cac6efacb0c32c1c 100644
--- a/chrome/browser/chrome_browser_main_extra_parts_aura.h
+++ b/chrome/browser/chrome_browser_main_extra_parts_aura.h
@@ -9,13 +9,26 @@
#include "base/compiler_specific.h"
#include "chrome/browser/chrome_browser_main_extra_parts.h"
+#if !defined(USE_ASH)
+#include "base/memory/scoped_ptr.h"
+#endif
+
+namespace aura {
+class DesktopStackingClient;
+}
+
class ChromeBrowserMainExtraPartsAura : public ChromeBrowserMainExtraParts {
public:
ChromeBrowserMainExtraPartsAura();
+ virtual void PreProfileInit() OVERRIDE;
virtual void PostMainMessageLoopRun() OVERRIDE;
private:
+#if !defined(USE_ASH)
+ scoped_ptr<aura::DesktopStackingClient> stacking_client_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsAura);
};
« no previous file with comments | « ash/shell/content_client/shell_browser_main_parts.cc ('k') | chrome/browser/chrome_browser_main_extra_parts_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698