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

Unified Diff: content/renderer/android/synchronous_compositor_factory.cc

Issue 15851006: Move synchronous compositor into content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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: content/renderer/android/synchronous_compositor_factory.cc
diff --git a/content/renderer/android/synchronous_compositor_factory.cc b/content/renderer/android/synchronous_compositor_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7238b710dfcaf4ba83605b12a8c3a12f3c0a5d74
--- /dev/null
+++ b/content/renderer/android/synchronous_compositor_factory.cc
@@ -0,0 +1,33 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/renderer/android/synchronous_compositor_factory.h"
+
+#include "base/command_line.h"
+#include "base/logging.h"
+#include "content/public/common/content_switches.h"
+
+namespace content {
+
+namespace {
+SynchronousCompositorFactory* g_instance = NULL;
+} // namespace
+
+// static
+void SynchronousCompositorFactory::SetInstance(
+ SynchronousCompositorFactory* instance) {
+ DCHECK(g_instance == NULL);
+
+ // This feature only makes sense in single process mode.
+ CHECK(CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess));
+
+ g_instance = instance;
+}
+
+// static
+SynchronousCompositorFactory* SynchronousCompositorFactory::GetInstance() {
+ return g_instance;
+}
+
+} // namespace content
« no previous file with comments | « content/renderer/android/synchronous_compositor_factory.h ('k') | content/renderer/android/synchronous_compositor_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698