| OLD | NEW |
| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) override; |
| 119 void histogramEnumeration(const char* name, | 119 void histogramEnumeration(const char* name, |
| 120 int sample, | 120 int sample, |
| 121 int boundary_value) override; | 121 int boundary_value) override; |
| 122 void histogramSparse(const char* name, int sample) override; | |
| 123 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp, | 122 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp, |
| 124 const char* name) override; | 123 const char* name) override; |
| 125 void unregisterMemoryDumpProvider( | 124 void unregisterMemoryDumpProvider( |
| 126 blink::WebMemoryDumpProvider* wmdp) override; | 125 blink::WebMemoryDumpProvider* wmdp) override; |
| 127 blink::WebProcessMemoryDump* createProcessMemoryDump() override; | 126 blink::WebProcessMemoryDump* createProcessMemoryDump() override; |
| 128 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid( | 127 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid( |
| 129 const blink::WebString& guidStr) override; | 128 const blink::WebString& guidStr) override; |
| 130 void addTraceLogEnabledStateObserver( | 129 void addTraceLogEnabledStateObserver( |
| 131 blink::Platform::TraceLogEnabledStateObserver* observer) override; | 130 blink::Platform::TraceLogEnabledStateObserver* observer) override; |
| 132 void removeTraceLogEnabledStateObserver( | 131 void removeTraceLogEnabledStateObserver( |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 200 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
| 202 | 201 |
| 203 ApiKeyValidator api_key_validator_; | 202 ApiKeyValidator api_key_validator_; |
| 204 | 203 |
| 205 scheduler::WebThreadBase* compositor_thread_; | 204 scheduler::WebThreadBase* compositor_thread_; |
| 206 }; | 205 }; |
| 207 | 206 |
| 208 } // namespace content | 207 } // namespace content |
| 209 | 208 |
| 210 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 209 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |