Index: cc/debug/test_context_support.cc |
diff --git a/cc/debug/test_context_support.cc b/cc/debug/test_context_support.cc |
deleted file mode 100644 |
index e5a0b93cef0b9845a98e24193dc4b8a868a1e47c..0000000000000000000000000000000000000000 |
--- a/cc/debug/test_context_support.cc |
+++ /dev/null |
@@ -1,36 +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 "cc/debug/test_context_support.h" |
- |
-#include "base/message_loop/message_loop.h" |
- |
-namespace cc { |
- |
-TestContextSupport::TestContextSupport() {} |
-TestContextSupport::~TestContextSupport() {} |
- |
-void TestContextSupport::SignalSyncPoint(uint32 sync_point, |
- const base::Closure& callback) { |
- sync_point_callbacks_.push_back(callback); |
-} |
- |
-void TestContextSupport::SignalQuery(uint32 query, |
- const base::Closure& callback) { |
- sync_point_callbacks_.push_back(callback); |
-} |
- |
-void TestContextSupport::SendManagedMemoryStats( |
- const gpu::ManagedMemoryStats& stats) { |
-} |
- |
-void TestContextSupport::CallAllSyncPointCallbacks() { |
- for (size_t i = 0; i < sync_point_callbacks_.size(); ++i) { |
- base::MessageLoop::current()->PostTask( |
- FROM_HERE, sync_point_callbacks_[i]); |
- } |
- sync_point_callbacks_.clear(); |
-} |
- |
-} // namespace cc |