summaryrefslogtreecommitdiffstats
path: root/ui/aura/desktop.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/aura/desktop.h')
-rw-r--r--ui/aura/desktop.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/ui/aura/desktop.h b/ui/aura/desktop.h
index e6b6c97..ffeed27 100644
--- a/ui/aura/desktop.h
+++ b/ui/aura/desktop.h
@@ -49,13 +49,6 @@ class AURA_EXPORT Desktop : public ui::CompositorDelegate,
static Desktop* GetInstance();
static void DeleteInstanceForTesting();
- static void set_compositor_factory_for_testing(ui::Compositor*(*factory)()) {
- compositor_factory_ = factory;
- }
- static ui::Compositor* (*compositor_factory())() {
- return compositor_factory_;
- }
-
static void set_use_fullscreen_host_window(bool use_fullscreen) {
use_fullscreen_host_window_ = use_fullscreen;
}
@@ -171,9 +164,6 @@ class AURA_EXPORT Desktop : public ui::CompositorDelegate,
static Desktop* instance_;
- // Factory used to create Compositors. Settable by tests.
- static ui::Compositor*(*compositor_factory_)();
-
// If set before the Desktop is created, the host window will cover the entire
// screen. Note that this can still be overridden via the
// switches::kAuraHostWindowSize flag.