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

Side by Side Diff: components/viz/service/hit_test/display_hit_test_data_factory_local.h

Issue 2938953002: Implement HitTestAggregator (Closed)
Patch Set: improvents based on reviewer comments ( partial ) Created 3 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_VIZ_SERVICE_HIT_TEST_DISPLAY_HIT_TEST_DATA_FACTORY_LOCAL_H_
6 #define COMPONENTS_VIZ_SERVICE_HIT_TEST_DISPLAY_HIT_TEST_DATA_FACTORY_LOCAL_H_
7
8 #include "components/viz/service/hit_test/display_hit_test_data_factory.h"
9 #include "components/viz/service/viz_service_export.h"
10
11 namespace viz {
12 namespace hit_test {
13
14 class VIZ_SERVICE_EXPORT DisplayHitTestDataFactoryLocal
15 : public DisplayHitTestDataFactory {
16 public:
17 DisplayHitTestDataFactoryLocal();
18 ~DisplayHitTestDataFactoryLocal() override;
19
20 DisplayHitTestData* Create(int byte_count) override;
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(DisplayHitTestDataFactoryLocal);
24 };
25
26 } // namespace hit_test
27 } // namespace viz
28
29 #endif // COMPONENTS_VIZ_SERVICE_HIT_TEST_DISPLAY_HIT_TEST_DATA_FACTORY_LOCAL_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698