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

Unified Diff: content/browser/browser_main_loop.h

Issue 1871253002: aura: Require explicit ownership of the Env instance. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot.merge Created 4 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
« no previous file with comments | « chromecast/browser/cast_browser_main_parts.cc ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_main_loop.h
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
index 9f43d5474133873fa49ca5d466c075832990069a..70522111c06aa36ae49a42229c4b8b0ea1101b68 100644
--- a/content/browser/browser_main_loop.h
+++ b/content/browser/browser_main_loop.h
@@ -15,6 +15,12 @@
#include "content/browser/browser_process_sub_thread.h"
#include "content/public/browser/browser_main_runner.h"
+#if defined(USE_AURA)
+namespace aura {
+class Env;
+}
+#endif
+
namespace base {
class CommandLine;
class FilePath;
@@ -202,6 +208,10 @@ class CONTENT_EXPORT BrowserMainLoop {
std::unique_ptr<base::trace_event::TraceEventSystemStatsMonitor>
system_stats_monitor_;
+#if defined(USE_AURA)
+ std::unique_ptr<aura::Env> env_;
+#endif
+
#if defined(OS_WIN)
std::unique_ptr<ScreenOrientationDelegate> screen_orientation_delegate_;
#endif
« no previous file with comments | « chromecast/browser/cast_browser_main_parts.cc ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698