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

Unified Diff: Source/modules/webdatabase/ChangeVersionData.h

Issue 1318793005: [part 2] Make classes and structures in modules 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
Index: Source/modules/webdatabase/ChangeVersionData.h
diff --git a/Source/modules/webdatabase/ChangeVersionData.h b/Source/modules/webdatabase/ChangeVersionData.h
index 109ed9992f49ddf1c81d842b9cc65956e1161501..bf660fc8c9a6e6a2caafc9928eb85fc30bb59734 100644
--- a/Source/modules/webdatabase/ChangeVersionData.h
+++ b/Source/modules/webdatabase/ChangeVersionData.h
@@ -26,11 +26,13 @@
#ifndef ChangeVersionData_h
#define ChangeVersionData_h
+#include "wtf/Allocator.h"
#include "wtf/text/WTFString.h"
namespace blink {
class ChangeVersionData {
+ STACK_ALLOCATED();
public:
ChangeVersionData(String oldVersion, String newVersion)
: m_oldVersion(oldVersion), m_newVersion(newVersion) { }
« no previous file with comments | « Source/modules/webaudio/testing/InternalsWebAudio.h ('k') | Source/modules/webdatabase/DOMWindowWebDatabase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698