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

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

Issue 1652983005: Remove Enumeration Histograms from the Blink Platform API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_blink_histograms_5a
Patch Set: Rebase two new histograms were added today 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
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 bool isReservedIPAddress(const blink::WebString& host) const override; 102 bool isReservedIPAddress(const blink::WebString& host) const override;
103 bool portAllowed(const blink::WebURL& url) const override; 103 bool portAllowed(const blink::WebURL& url) const override;
104 blink::WebThread* createThread(const char* name) override; 104 blink::WebThread* createThread(const char* name) override;
105 blink::WebThread* currentThread() override; 105 blink::WebThread* currentThread() override;
106 void yieldCurrentThread() override; 106 void yieldCurrentThread() override;
107 blink::WebWaitableEvent* createWaitableEvent( 107 blink::WebWaitableEvent* createWaitableEvent(
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 histogramEnumeration(const char* name,
113 int sample,
114 int boundary_value) override;
115 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp, 112 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider* wmdp,
116 const char* name) override; 113 const char* name) override;
117 void unregisterMemoryDumpProvider( 114 void unregisterMemoryDumpProvider(
118 blink::WebMemoryDumpProvider* wmdp) override; 115 blink::WebMemoryDumpProvider* wmdp) override;
119 blink::WebProcessMemoryDump* createProcessMemoryDump() override; 116 blink::WebProcessMemoryDump* createProcessMemoryDump() override;
120 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid( 117 blink::Platform::WebMemoryAllocatorDumpGuid createWebMemoryAllocatorDumpGuid(
121 const blink::WebString& guidStr) override; 118 const blink::WebString& guidStr) override;
122 void addTraceLogEnabledStateObserver( 119 void addTraceLogEnabledStateObserver(
123 blink::Platform::TraceLogEnabledStateObserver* observer) override; 120 blink::Platform::TraceLogEnabledStateObserver* observer) override;
124 void removeTraceLogEnabledStateObserver( 121 void removeTraceLogEnabledStateObserver(
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; 190 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_;
194 191
195 TrialTokenValidator trial_token_validator_; 192 TrialTokenValidator trial_token_validator_;
196 193
197 scheduler::WebThreadBase* compositor_thread_; 194 scheduler::WebThreadBase* compositor_thread_;
198 }; 195 };
199 196
200 } // namespace content 197 } // namespace content
201 198
202 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 199 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698