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

Unified Diff: components/viz/service/hit_test/display_hit_test_data_factory_local.cc

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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698