| Index: cc/debug/unittest_only_benchmark.h
|
| diff --git a/cc/debug/unittest_only_benchmark.h b/cc/debug/unittest_only_benchmark.h
|
| deleted file mode 100644
|
| index 7fa2b4dcab4e98eda18f17c5d413692617e63eb3..0000000000000000000000000000000000000000
|
| --- a/cc/debug/unittest_only_benchmark.h
|
| +++ /dev/null
|
| @@ -1,35 +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.
|
| -
|
| -#ifndef CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_
|
| -#define CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_
|
| -
|
| -#include "base/memory/weak_ptr.h"
|
| -#include "cc/debug/micro_benchmark.h"
|
| -
|
| -namespace cc {
|
| -
|
| -class CC_EXPORT UnittestOnlyBenchmark : public MicroBenchmark {
|
| - public:
|
| - UnittestOnlyBenchmark(scoped_ptr<base::Value> value,
|
| - const DoneCallback& callback);
|
| - ~UnittestOnlyBenchmark() override;
|
| -
|
| - void DidUpdateLayers(LayerTreeHost* host) override;
|
| - bool ProcessMessage(scoped_ptr<base::Value> value) override;
|
| -
|
| - protected:
|
| - scoped_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl(
|
| - scoped_refptr<base::MessageLoopProxy> origin_loop) override;
|
| -
|
| - private:
|
| - void RecordImplResults(scoped_ptr<base::Value> results);
|
| -
|
| - bool create_impl_benchmark_;
|
| - base::WeakPtrFactory<UnittestOnlyBenchmark> weak_ptr_factory_;
|
| -};
|
| -
|
| -} // namespace cc
|
| -
|
| -#endif // CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_
|
|
|