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

Side by Side Diff: content/shell/test_runner/test_plugin.h

Issue 2844823002: Support Coalesced Touch in ppapi (Closed)
Patch Set: Support Coalesced Touch in ppapi Created 3 years, 7 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_SHELL_TEST_RUNNER_TEST_PLUGIN_H_ 5 #ifndef CONTENT_SHELL_TEST_RUNNER_TEST_PLUGIN_H_
6 #define CONTENT_SHELL_TEST_RUNNER_TEST_PLUGIN_H_ 6 #define CONTENT_SHELL_TEST_RUNNER_TEST_PLUGIN_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 void UpdateAllLifecyclePhases() override {} 70 void UpdateAllLifecyclePhases() override {}
71 void Paint(blink::WebCanvas* canvas, const blink::WebRect& rect) override {} 71 void Paint(blink::WebCanvas* canvas, const blink::WebRect& rect) override {}
72 void UpdateGeometry(const blink::WebRect& window_rect, 72 void UpdateGeometry(const blink::WebRect& window_rect,
73 const blink::WebRect& clip_rect, 73 const blink::WebRect& clip_rect,
74 const blink::WebRect& unobscured_rect, 74 const blink::WebRect& unobscured_rect,
75 const blink::WebVector<blink::WebRect>& cut_outs_rects, 75 const blink::WebVector<blink::WebRect>& cut_outs_rects,
76 bool is_visible) override; 76 bool is_visible) override;
77 void UpdateFocus(bool focus, blink::WebFocusType focus_type) override {} 77 void UpdateFocus(bool focus, blink::WebFocusType focus_type) override {}
78 void UpdateVisibility(bool visibility) override {} 78 void UpdateVisibility(bool visibility) override {}
79 blink::WebInputEventResult HandleInputEvent( 79 blink::WebInputEventResult HandleInputEvent(
80 const blink::WebInputEvent& event, 80 const blink::WebCoalescedInputEvent& event,
81 blink::WebCursorInfo& info) override; 81 blink::WebCursorInfo& info) override;
82 bool HandleDragStatusUpdate(blink::WebDragStatus drag_status, 82 bool HandleDragStatusUpdate(blink::WebDragStatus drag_status,
83 const blink::WebDragData& data, 83 const blink::WebDragData& data,
84 blink::WebDragOperationsMask mask, 84 blink::WebDragOperationsMask mask,
85 const blink::WebPoint& position, 85 const blink::WebPoint& position,
86 const blink::WebPoint& screen_position) override; 86 const blink::WebPoint& screen_position) override;
87 void DidReceiveResponse(const blink::WebURLResponse& response) override {} 87 void DidReceiveResponse(const blink::WebURLResponse& response) override {}
88 void DidReceiveData(const char* data, int data_length) override {} 88 void DidReceiveData(const char* data, int data_length) override {}
89 void DidFinishLoading() override {} 89 void DidFinishLoading() override {}
90 void DidFailLoading(const blink::WebURLError& error) override {} 90 void DidFailLoading(const blink::WebURLError& error) override {}
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 170
171 bool is_persistent_; 171 bool is_persistent_;
172 bool can_create_without_renderer_; 172 bool can_create_without_renderer_;
173 173
174 DISALLOW_COPY_AND_ASSIGN(TestPlugin); 174 DISALLOW_COPY_AND_ASSIGN(TestPlugin);
175 }; 175 };
176 176
177 } // namespace test_runner 177 } // namespace test_runner
178 178
179 #endif // CONTENT_SHELL_TEST_RUNNER_TEST_PLUGIN_H_ 179 #endif // CONTENT_SHELL_TEST_RUNNER_TEST_PLUGIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698