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

Unified Diff: Source/core/inspector/v8/ScriptBreakpoint.h

Issue 1308273007: Make classes and structures in core/inspector fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 | « Source/core/inspector/V8AsyncCallTracker.h ('k') | Source/core/inspector/v8/V8Debugger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/v8/ScriptBreakpoint.h
diff --git a/Source/core/inspector/v8/ScriptBreakpoint.h b/Source/core/inspector/v8/ScriptBreakpoint.h
index 93fa9b057d42449968af3ef53f8fe897686880c4..b0fc0954d0af90178216fd2300c1e2ba225156a4 100644
--- a/Source/core/inspector/v8/ScriptBreakpoint.h
+++ b/Source/core/inspector/v8/ScriptBreakpoint.h
@@ -30,11 +30,13 @@
#ifndef ScriptBreakpoint_h
#define ScriptBreakpoint_h
+#include "wtf/Allocator.h"
#include "wtf/text/WTFString.h"
namespace blink {
struct ScriptBreakpoint {
+ STACK_ALLOCATED();
ScriptBreakpoint() : ScriptBreakpoint(0, 0, String()) { }
ScriptBreakpoint(int lineNumber, int columnNumber, const String& condition)
« no previous file with comments | « Source/core/inspector/V8AsyncCallTracker.h ('k') | Source/core/inspector/v8/V8Debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698