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

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

Issue 1631143003: CL for perf tryjob on android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 blink::WebWaitableEvent::ResetPolicy policy, 108 blink::WebWaitableEvent::ResetPolicy policy,
109 blink::WebWaitableEvent::InitialState state) override; 109 blink::WebWaitableEvent::InitialState state) override;
110 blink::WebWaitableEvent* waitMultipleEvents( 110 blink::WebWaitableEvent* waitMultipleEvents(
111 const blink::WebVector<blink::WebWaitableEvent*>& events) override; 111 const blink::WebVector<blink::WebWaitableEvent*>& events) override;
112 void decrementStatsCounter(const char* name) override; 112 void decrementStatsCounter(const char* name) override;
113 void incrementStatsCounter(const char* name) override; 113 void incrementStatsCounter(const char* name) override;
114 void histogramCustomCounts(const char* name, 114 void histogramCustomCounts(const char* name,
115 int sample, 115 int sample,
116 int min, 116 int min,
117 int max, 117 int max,
118 int bucket_count) override; 118 int bucket_count,
119 HistogramCacheSlot* cache_slot) override;
119 void histogramEnumeration(const char* name, 120 void histogramEnumeration(const char* name,
120 int sample, 121 int sample,
121 int boundary_value) override; 122 int boundary_value,
122 void histogramSparse(const char* name, int sample) override; 123 HistogramCacheSlot* cache_slot) override;
124 void histogramSparse(const char* name,
125 int sample,
126 HistogramCacheSlot* cache_slot) override;
123 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp, 127 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp,
124 const char* name) override; 128 const char* name) override;
125 void unregisterMemoryDumpProvider( 129 void unregisterMemoryDumpProvider(
126 blink::WebMemoryDumpProvider* wmdp) override; 130 blink::WebMemoryDumpProvider* wmdp) override;
127 blink::WebProcessMemoryDump* createProcessMemoryDump() override; 131 blink::WebProcessMemoryDump* createProcessMemoryDump() override;
128 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid( 132 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid(
129 const blink::WebString& guidStr) override; 133 const blink::WebString& guidStr) override;
130 void addTraceLogEnabledStateObserver( 134 void addTraceLogEnabledStateObserver(
131 blink::Platform::TraceLogEnabledStateObserver* observer) override; 135 blink::Platform::TraceLogEnabledStateObserver* observer) override;
132 void removeTraceLogEnabledStateObserver( 136 void removeTraceLogEnabledStateObserver(
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; 205 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_;
202 206
203 ApiKeyValidator api_key_validator_; 207 ApiKeyValidator api_key_validator_;
204 208
205 scheduler::WebThreadBase* compositor_thread_; 209 scheduler::WebThreadBase* compositor_thread_;
206 }; 210 };
207 211
208 } // namespace content 212 } // namespace content
209 213
210 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 214 #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