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

Unified Diff: Source/core/inspector/ScriptArguments.h

Issue 896603002: Oilpan: declare and define various inspector class dtors out-of-line. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/inspector/ScriptArguments.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/ScriptArguments.h
diff --git a/Source/core/inspector/ScriptArguments.h b/Source/core/inspector/ScriptArguments.h
index f3488fb823799795fe18ee78cda84052218a740c..d8df0555e21be1fdc03ef977cdee5aa504132f19 100644
--- a/Source/core/inspector/ScriptArguments.h
+++ b/Source/core/inspector/ScriptArguments.h
@@ -41,11 +41,12 @@ namespace blink {
class ScriptValue;
-class ScriptArguments : public RefCountedWillBeGarbageCollectedFinalized<ScriptArguments> {
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScriptArguments);
+class ScriptArguments final : public RefCountedWillBeGarbageCollectedFinalized<ScriptArguments> {
public:
static PassRefPtrWillBeRawPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments);
+ ~ScriptArguments();
+
const ScriptValue& argumentAt(size_t) const;
size_t argumentCount() const { return m_arguments.size(); }
« no previous file with comments | « no previous file | Source/core/inspector/ScriptArguments.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698