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

Unified Diff: ui/aura/env.h

Issue 10441028: aura/cros: Rename MessagePump{X => AuraX11} and move the atom cache into it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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: ui/aura/env.h
diff --git a/ui/aura/env.h b/ui/aura/env.h
index 6ffb74fa6d2e9a671bf48a14f84d9d6f49e8f054..033456561f3dc2451bd78d50b9c5fb07dad52487 100644
--- a/ui/aura/env.h
+++ b/ui/aura/env.h
@@ -12,10 +12,6 @@
#include "ui/aura/aura_export.h"
#include "ui/aura/client/stacking_client.h"
-#if defined(USE_X11)
-#include "ui/aura/x11_atom_cache.h"
-#endif
-
namespace aura {
class EnvObserver;
@@ -59,12 +55,6 @@ class AURA_EXPORT Env {
MonitorManager* monitor_manager() { return monitor_manager_.get(); }
void SetMonitorManager(MonitorManager* monitor_manager);
-#if defined(USE_X11)
- // Gets the X11 atom cache. This must not persist the cache across
- // Env::DeleteInstance() calls.
- X11AtomCache* atom_cache() { return &atom_cache_; }
-#endif
-
// Returns the native event dispatcher. The result should only be passed to
// MessageLoopForUI::RunWithDispatcher() or
// MessageLoopForUI::RunAllPendingWithDispatcher(), or used to dispatch
@@ -93,7 +83,6 @@ class AURA_EXPORT Env {
#if defined(USE_X11)
scoped_ptr<internal::MonitorChangeObserverX11> monitor_change_observer_;
- X11AtomCache atom_cache_;
#endif
DISALLOW_COPY_AND_ASSIGN(Env);

Powered by Google App Engine
This is Rietveld 408576698