Chromium Code Reviews| Index: third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.h |
| diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.h b/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.h |
| index c77fd8fe5ecdcdd55ad5dedacdb75c5382f31b4a..cd7610a5526630e95948396c195fe2966be69efa 100644 |
| --- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.h |
| +++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.h |
| @@ -12,7 +12,7 @@ |
| namespace blink { |
| class LocalFrame; |
| -class ThreadedWorkletGlobalScopeProxy; |
| +class ThreadedWorkletMessagingProxy; |
| class WorkletGlobalScopeProxy; |
| class MODULES_EXPORT AnimationWorklet final : public Worklet { |
| @@ -28,8 +28,7 @@ public: |
| private: |
| explicit AnimationWorklet(LocalFrame*); |
| - // TODO(ikilpatrick): this will change to a raw ptr once we have a thread. |
| - std::unique_ptr<ThreadedWorkletGlobalScopeProxy> m_workletGlobalScopeProxy; |
| + ThreadedWorkletMessagingProxy* m_workletMessagingProxy; |
|
yhirano
2016/09/12 09:02:59
Can you add comments describing why having this ra
|
| }; |
| } // namespace blink |