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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h

Issue 1550533002: Rename WorkerGlobalScopeExecutionState to ExecutionState. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h b/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h
index 8213766fb9fa0e007989d39bd31dfdccdc60292d..f4e53bf82656ac384a006d738f59cd331feb4eb4 100644
--- a/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h
+++ b/third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.h
@@ -96,7 +96,7 @@ public:
private:
WorkerScriptController(WorkerGlobalScope*, v8::Isolate*);
- class WorkerGlobalScopeExecutionState;
+ class ExecutionState;
v8::Isolate* isolate() const;
@@ -113,14 +113,13 @@ private:
RefPtrWillBeMember<RejectedPromises> m_rejectedPromises;
- // |m_globalScopeExecutionState| refers to a stack object
- // that evaluate() allocates; evaluate() ensuring that the
- // pointer reference to it is removed upon returning. Hence
- // kept as a bare pointer here, and not a Persistent with
+ // |m_executionState| refers to a stack object that evaluate() allocates;
+ // evaluate() ensuring that the pointer reference to it is removed upon
+ // returning. Hence kept as a bare pointer here, and not a Persistent with
// Oilpan enabled; stack scanning will visit the object and
// trace its on-heap fields.
GC_PLUGIN_IGNORE("394615")
- WorkerGlobalScopeExecutionState* m_globalScopeExecutionState;
+ ExecutionState* m_executionState;
};
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/WorkerScriptController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698