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 |