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

Side by Side Diff: content/renderer/renderer_blink_platform_impl.cc

Issue 1915373002: Implement empty WorkerInternals interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@trials-in-service-workers
Patch Set: update expectations Created 4 years, 7 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 (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 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1302 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks)); 1302 QuotaDispatcher::CreateWebStorageQuotaCallbacksWrapper(callbacks));
1303 } 1303 }
1304 1304
1305 //------------------------------------------------------------------------------ 1305 //------------------------------------------------------------------------------
1306 1306
1307 blink::WebTrialTokenValidator* 1307 blink::WebTrialTokenValidator*
1308 RendererBlinkPlatformImpl::trialTokenValidator() { 1308 RendererBlinkPlatformImpl::trialTokenValidator() {
1309 return &trial_token_validator_; 1309 return &trial_token_validator_;
1310 } 1310 }
1311 1311
1312 void RendererBlinkPlatformImpl::workerContextCreated(
1313 v8::Local<v8::Context> worker) {
1314 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread(
1315 worker);
1316 }
1317
1312 } // namespace content 1318 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698