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

Side by Side Diff: content/child/blink_platform_impl.h

Issue 1682423002: Remove WebWaitableEvent and replace it with WaitableEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android build Created 4 years, 10 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
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CHILD_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 blink::WebSocketHandle* createWebSocketHandle() override; 93 blink::WebSocketHandle* createWebSocketHandle() override;
94 blink::WebString userAgent() override; 94 blink::WebString userAgent() override;
95 blink::WebData parseDataURL(const blink::WebURL& url, 95 blink::WebData parseDataURL(const blink::WebURL& url,
96 blink::WebString& mimetype, 96 blink::WebString& mimetype,
97 blink::WebString& charset) override; 97 blink::WebString& charset) override;
98 blink::WebURLError cancelledError(const blink::WebURL& url) const override; 98 blink::WebURLError cancelledError(const blink::WebURL& url) const override;
99 bool isReservedIPAddress(const blink::WebString& host) const override; 99 bool isReservedIPAddress(const blink::WebString& host) const override;
100 bool portAllowed(const blink::WebURL& url) const override; 100 bool portAllowed(const blink::WebURL& url) const override;
101 blink::WebThread* createThread(const char* name) override; 101 blink::WebThread* createThread(const char* name) override;
102 blink::WebThread* currentThread() override; 102 blink::WebThread* currentThread() override;
103 blink::WebWaitableEvent* createWaitableEvent(
104 blink::WebWaitableEvent::ResetPolicy policy,
105 blink::WebWaitableEvent::InitialState state) override;
106 blink::WebWaitableEvent* waitMultipleEvents(
107 const blink::WebVector<blink::WebWaitableEvent*>& events) override;
108 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp, 103 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp,
109 const char* name) override; 104 const char* name) override;
110 void unregisterMemoryDumpProvider( 105 void unregisterMemoryDumpProvider(
111 blink::WebMemoryDumpProvider* wmdp) override; 106 blink::WebMemoryDumpProvider* wmdp) override;
112 blink::WebProcessMemoryDump* createProcessMemoryDump() override; 107 blink::WebProcessMemoryDump* createProcessMemoryDump() override;
113 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid( 108 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid(
114 const blink::WebString& guidStr) override; 109 const blink::WebString& guidStr) override;
115 void addTraceLogEnabledStateObserver( 110 void addTraceLogEnabledStateObserver(
116 blink::Platform::TraceLogEnabledStateObserver* observer) override; 111 blink::Platform::TraceLogEnabledStateObserver* observer) override;
117 void removeTraceLogEnabledStateObserver( 112 void removeTraceLogEnabledStateObserver(
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; 181 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_;
187 182
188 TrialTokenValidator trial_token_validator_; 183 TrialTokenValidator trial_token_validator_;
189 184
190 scheduler::WebThreadBase* compositor_thread_; 185 scheduler::WebThreadBase* compositor_thread_;
191 }; 186 };
192 187
193 } // namespace content 188 } // namespace content
194 189
195 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 190 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698