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

Unified Diff: cc/test/fake_impl_proxy.h

Issue 1411663002: cc: Split Proxy to eliminate unnecessary dependencies on the impl side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update perf tests. Created 5 years, 2 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
« no previous file with comments | « cc/output/gl_renderer_unittest.cc ('k') | cc/test/fake_impl_task_runner_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_impl_proxy.h
diff --git a/cc/test/fake_impl_proxy.h b/cc/test/fake_impl_proxy.h
deleted file mode 100644
index 6cbf9a32ad63a689957f629159d21d96d4d35cda..0000000000000000000000000000000000000000
--- a/cc/test/fake_impl_proxy.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2012 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.
-
-#ifndef CC_TEST_FAKE_IMPL_PROXY_H_
-#define CC_TEST_FAKE_IMPL_PROXY_H_
-
-#include "base/thread_task_runner_handle.h"
-#include "cc/test/fake_proxy.h"
-#include "cc/trees/single_thread_proxy.h"
-
-namespace base {
-class SingleThreadIdleTaskRunner;
-}
-
-namespace cc {
-
-class FakeImplProxy : public FakeProxy {
- public:
- FakeImplProxy()
- : FakeProxy(base::ThreadTaskRunnerHandle::Get(), nullptr),
- set_impl_thread_(this) {}
-
- explicit FakeImplProxy(
- scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner)
- : FakeProxy(base::ThreadTaskRunnerHandle::Get(), impl_task_runner),
- set_impl_thread_(this) {}
-
- private:
- DebugScopedSetImplThread set_impl_thread_;
-};
-
-} // namespace cc
-
-#endif // CC_TEST_FAKE_IMPL_PROXY_H_
« no previous file with comments | « cc/output/gl_renderer_unittest.cc ('k') | cc/test/fake_impl_task_runner_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698