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

Unified Diff: gpu/command_buffer/client/client_test_helper.h

Issue 2727573003: gpu: Add sync token dependencies to flush metadata. (Closed)
Patch Set: fix broken tests oops Created 3 years, 9 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: gpu/command_buffer/client/client_test_helper.h
diff --git a/gpu/command_buffer/client/client_test_helper.h b/gpu/command_buffer/client/client_test_helper.h
index 31756c3526f7a0d33bdfec232ca83cfadefc7c83..fe5db91eefe458134ea98a66745005793c14481f 100644
--- a/gpu/command_buffer/client/client_test_helper.h
+++ b/gpu/command_buffer/client/client_test_helper.h
@@ -117,7 +117,8 @@ class MockClientGpuControl : public GpuControl {
MOCK_METHOD1(IsFenceSyncReleased, bool(uint64_t release));
MOCK_METHOD2(SignalSyncToken, void(const SyncToken& sync_token,
const base::Closure& callback));
- MOCK_METHOD1(CanWaitUnverifiedSyncToken, bool(const SyncToken*));
+ MOCK_METHOD1(WaitSyncToken, void(const SyncToken&));
+ MOCK_METHOD1(CanWaitUnverifiedSyncToken, bool(const SyncToken&));
private:
DISALLOW_COPY_AND_ASSIGN(MockClientGpuControl);

Powered by Google App Engine
This is Rietveld 408576698