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

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

Issue 1838853005: android: Remove in-process sync compositor code path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_in_proc_video
Patch Set: rebase 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
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
deleted file mode 100644
index e2724be0b7ffdb8f0768db37b2c9db347deb6390..0000000000000000000000000000000000000000
--- a/content/renderer/android/synchronous_compositor_factory.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-// 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/logging.h"
-
-namespace content {
-
-namespace {
-SynchronousCompositorFactory* g_instance = nullptr;
-} // namespace
-
-// static
-void SynchronousCompositorFactory::SetInstance(
- SynchronousCompositorFactory* instance) {
- DCHECK(g_instance == nullptr);
- 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/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698