Chromium Code Reviews| Index: components/viz/service/hit_test/display_hit_test_data_factory_local.cc |
| diff --git a/components/viz/service/hit_test/display_hit_test_data_factory_local.cc b/components/viz/service/hit_test/display_hit_test_data_factory_local.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..eaa4849e02d77abda52dc458d93d4c5e3cf665b4 |
| --- /dev/null |
| +++ b/components/viz/service/hit_test/display_hit_test_data_factory_local.cc |
| @@ -0,0 +1,19 @@ |
| +// 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" |
|
varkha
2017/06/19 21:15:04
nit: ws after this line (but consider the net nit.
gklassen
2017/06/20 16:09:38
Done.
|
| +#include "base/logging.h" |
|
varkha
2017/06/19 21:15:04
Is this necessary?
gklassen
2017/06/20 16:09:38
Done.
|
| + |
| +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 |