| Index: components/viz/hit_test/display_hit_test_data_factory_local.cc
|
| diff --git a/components/viz/hit_test/display_hit_test_data_factory_local.cc b/components/viz/hit_test/display_hit_test_data_factory_local.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..16754d7c3bf265dcc066af6b8ea4752d7d1169f8
|
| --- /dev/null
|
| +++ b/components/viz/hit_test/display_hit_test_data_factory_local.cc
|
| @@ -0,0 +1,20 @@
|
| +// Copyright 2017 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 "display_hit_test_data_factory_local.h"
|
| +#include "base/logging.h"
|
| +#include "components/viz/hit_test/hit_test_aggregator.h"
|
| +
|
| +namespace viz {
|
| +namespace hit_test {
|
| +
|
| +DisplayHitTestDataFactoryLocal::DisplayHitTestDataFactoryLocal() {}
|
| +DisplayHitTestDataFactoryLocal::~DisplayHitTestDataFactoryLocal() {}
|
| +
|
| +DisplayHitTestData* DisplayHitTestDataFactoryLocal::Create(int byte_count) {
|
| + return (DisplayHitTestData*)operator new(byte_count);
|
| +}
|
| +
|
| +} // namespace hit_test
|
| +} // namespace viz
|
|
|