| 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 #include "content/renderer/renderer_blink_platform_impl.h" | 5 #include "content/renderer/renderer_blink_platform_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1301 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); | 1301 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); |
| 1302 } | 1302 } |
| 1303 | 1303 |
| 1304 //------------------------------------------------------------------------------ | 1304 //------------------------------------------------------------------------------ |
| 1305 | 1305 |
| 1306 blink::WebTrialTokenValidator* | 1306 blink::WebTrialTokenValidator* |
| 1307 RendererBlinkPlatformImpl::trialTokenValidator() { | 1307 RendererBlinkPlatformImpl::trialTokenValidator() { |
| 1308 return &trial_token_validator_; | 1308 return &trial_token_validator_; |
| 1309 } | 1309 } |
| 1310 | 1310 |
| 1311 void RendererBlinkPlatformImpl::workerContextCreated( |
| 1312 const v8::Local<v8::Context>& worker) { |
| 1313 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
| 1314 worker); |
| 1315 } |
| 1316 |
| 1311 } // namespace content | 1317 } // namespace content |
| OLD | NEW |