| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ | 6 #define CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 | 320 |
| 321 // Notifies that a service worker context will be destroyed. This function | 321 // Notifies that a service worker context will be destroyed. This function |
| 322 // is called from the worker thread. | 322 // is called from the worker thread. |
| 323 virtual void WillDestroyServiceWorkerContextOnWorkerThread( | 323 virtual void WillDestroyServiceWorkerContextOnWorkerThread( |
| 324 v8::Local<v8::Context> context, | 324 v8::Local<v8::Context> context, |
| 325 const GURL& url) {} | 325 const GURL& url) {} |
| 326 | 326 |
| 327 // Whether this renderer should enforce preferences related to the WebRTC | 327 // Whether this renderer should enforce preferences related to the WebRTC |
| 328 // routing logic, i.e. allowing multiple routes and non-proxied UDP. | 328 // routing logic, i.e. allowing multiple routes and non-proxied UDP. |
| 329 virtual bool ShouldEnforceWebRTCRoutingPreferences(); | 329 virtual bool ShouldEnforceWebRTCRoutingPreferences(); |
| 330 | |
| 331 // Returns the public key to be used for origin trials, or an empty string if | |
| 332 // origin trials are not enabled in this context. | |
| 333 virtual base::StringPiece GetOriginTrialPublicKey(); | |
| 334 }; | 330 }; |
| 335 | 331 |
| 336 } // namespace content | 332 } // namespace content |
| 337 | 333 |
| 338 #endif // CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ | 334 #endif // CONTENT_PUBLIC_RENDERER_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |