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

Side by Side Diff: third_party/WebKit/Source/platform/exported/Platform.cpp

Issue 2939123002: Revert of Add blink::WebSocketHandshakeThrottle (Closed)
Patch Set: Created 3 years, 6 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 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "public/platform/WebCanvasCaptureHandler.h" 46 #include "public/platform/WebCanvasCaptureHandler.h"
47 #include "public/platform/WebFeaturePolicy.h" 47 #include "public/platform/WebFeaturePolicy.h"
48 #include "public/platform/WebGestureCurve.h" 48 #include "public/platform/WebGestureCurve.h"
49 #include "public/platform/WebGraphicsContext3DProvider.h" 49 #include "public/platform/WebGraphicsContext3DProvider.h"
50 #include "public/platform/WebImageCaptureFrameGrabber.h" 50 #include "public/platform/WebImageCaptureFrameGrabber.h"
51 #include "public/platform/WebMediaRecorderHandler.h" 51 #include "public/platform/WebMediaRecorderHandler.h"
52 #include "public/platform/WebMediaStreamCenter.h" 52 #include "public/platform/WebMediaStreamCenter.h"
53 #include "public/platform/WebPrerenderingSupport.h" 53 #include "public/platform/WebPrerenderingSupport.h"
54 #include "public/platform/WebRTCCertificateGenerator.h" 54 #include "public/platform/WebRTCCertificateGenerator.h"
55 #include "public/platform/WebRTCPeerConnectionHandler.h" 55 #include "public/platform/WebRTCPeerConnectionHandler.h"
56 #include "public/platform/WebSocketHandshakeThrottle.h"
57 #include "public/platform/WebStorageNamespace.h" 56 #include "public/platform/WebStorageNamespace.h"
58 #include "public/platform/WebThread.h" 57 #include "public/platform/WebThread.h"
59 #include "public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h" 58 #include "public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h"
60 #include "public/platform/modules/webmidi/WebMIDIAccessor.h" 59 #include "public/platform/modules/webmidi/WebMIDIAccessor.h"
61 #include "services/service_manager/public/cpp/connector.h" 60 #include "services/service_manager/public/cpp/connector.h"
62 61
63 namespace blink { 62 namespace blink {
64 63
65 namespace { 64 namespace {
66 65
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 return nullptr; 220 return nullptr;
222 } 221 }
223 222
224 std::unique_ptr<WebCanvasCaptureHandler> Platform::CreateCanvasCaptureHandler( 223 std::unique_ptr<WebCanvasCaptureHandler> Platform::CreateCanvasCaptureHandler(
225 const WebSize&, 224 const WebSize&,
226 double, 225 double,
227 WebMediaStreamTrack*) { 226 WebMediaStreamTrack*) {
228 return nullptr; 227 return nullptr;
229 } 228 }
230 229
231 std::unique_ptr<WebSocketHandshakeThrottle>
232 Platform::CreateWebSocketHandshakeThrottle() {
233 return nullptr;
234 }
235
236 std::unique_ptr<WebImageCaptureFrameGrabber> 230 std::unique_ptr<WebImageCaptureFrameGrabber>
237 Platform::CreateImageCaptureFrameGrabber() { 231 Platform::CreateImageCaptureFrameGrabber() {
238 return nullptr; 232 return nullptr;
239 } 233 }
240 234
241 std::unique_ptr<WebFeaturePolicy> Platform::CreateFeaturePolicy( 235 std::unique_ptr<WebFeaturePolicy> Platform::CreateFeaturePolicy(
242 const WebFeaturePolicy* parent_policy, 236 const WebFeaturePolicy* parent_policy,
243 const WebParsedFeaturePolicy& container_policy, 237 const WebParsedFeaturePolicy& container_policy,
244 const WebParsedFeaturePolicy& policy_header, 238 const WebParsedFeaturePolicy& policy_header,
245 const WebSecurityOrigin&) { 239 const WebSecurityOrigin&) {
246 return nullptr; 240 return nullptr;
247 } 241 }
248 242
249 std::unique_ptr<WebFeaturePolicy> Platform::DuplicateFeaturePolicyWithOrigin( 243 std::unique_ptr<WebFeaturePolicy> Platform::DuplicateFeaturePolicyWithOrigin(
250 const WebFeaturePolicy&, 244 const WebFeaturePolicy&,
251 const WebSecurityOrigin&) { 245 const WebSecurityOrigin&) {
252 return nullptr; 246 return nullptr;
253 } 247 }
254 248
255 } // namespace blink 249 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698