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

Issue 1510603005: [Do not submit] Worklet implementation.

Created:
5 years ago by ikilpatrick
Modified:
5 years ago
Reviewers:
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[Do not submit] Worklet implementation. BUG=

Patch Set 1 #

Patch Set 2 : Move everything to modules. #

Patch Set 3 : A basic CompositorWorklet implementation. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+967 lines, -473 lines) Patch
M third_party/WebKit/Source/bindings/core/DEPS View 1 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/ActiveDOMCallback.cpp View 1 2 chunks +2 lines, -1 line 0 comments Download
A + third_party/WebKit/Source/bindings/core/v8/GlobalScopeScriptController.h View 1 5 chunks +17 lines, -15 lines 0 comments Download
A + third_party/WebKit/Source/bindings/core/v8/GlobalScopeScriptController.cpp View 1 12 chunks +45 lines, -49 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/ToV8.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8Binding.h View 4 chunks +19 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp View 1 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp View 1 2 3 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h View 1 1 chunk +8 lines, -103 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.cpp View 1 1 chunk +7 lines, -250 lines 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/v8.gypi View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/ToV8ForModules.h View 1 2 chunks +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.h View 1 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp View 1 5 chunks +32 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/bindings/modules/v8/WorkletScriptController.h View 1 1 chunk +33 lines, -0 lines 0 comments Download
A + third_party/WebKit/Source/bindings/modules/v8/WorkletScriptController.cpp View 1 2 chunks +20 lines, -28 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/v8.gni View 1 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/modules/v8/v8.gypi View 1 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/bindings/scripts/v8_utilities.py View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/core.gypi View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ExecutionContext.h View 1 chunk +1 line, -0 lines 0 comments Download
A third_party/WebKit/Source/core/workers/AbstractGlobalScope.h View 1 1 chunk +40 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerGlobalScope.h View 1 6 chunks +6 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp View 2 chunks +6 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerThread.cpp View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/modules.gypi View 1 2 3 chunks +13 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/CompositorWorkletThread.h View 1 2 1 chunk +44 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/CompositorWorkletThread.cpp View 1 2 1 chunk +165 lines, -0 lines 0 comments Download
A + third_party/WebKit/Source/modules/worklet/DEPS View 1 1 chunk +1 line, -1 line 0 comments Download
A third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.h View 1 1 chunk +39 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/DOMWindowWorklet.cpp View 1 1 chunk +57 lines, -0 lines 0 comments Download
A + third_party/WebKit/Source/modules/worklet/WindowWorklet.idl View 1 1 chunk +4 lines, -3 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/Worklet.h View 1 2 1 chunk +39 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/Worklet.cpp View 1 2 1 chunk +49 lines, -0 lines 0 comments Download
A + third_party/WebKit/Source/modules/worklet/Worklet.idl View 1 1 chunk +4 lines, -3 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h View 1 2 1 chunk +89 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.cpp View 1 2 1 chunk +102 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl View 1 1 chunk +14 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/WorkletMessagingProxy.h View 1 2 1 chunk +36 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/modules/worklet/WorkletMessagingProxy.cpp View 1 2 1 chunk +48 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/Logging.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 1 chunk +1 line, -0 lines 0 comments Download

Powered by Google App Engine
This is Rietveld 408576698