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

Unified Diff: Source/core/testing/Internals.cpp

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/core/testing/Internals.cpp
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
index 059d0d16dad8433ad198376ba1d1b79e0ca3938a..3eaca1acc32e7de7a2181bae5f74968fb3998eec 100644
--- a/Source/core/testing/Internals.cpp
+++ b/Source/core/testing/Internals.cpp
@@ -109,6 +109,7 @@
#include "core/rendering/RenderView.h"
#include "core/rendering/compositing/CompositedLayerMapping.h"
#include "core/rendering/compositing/RenderLayerCompositor.h"
+#include "core/testing/DictionaryTest.h"
#include "core/testing/GCObservation.h"
#include "core/testing/InternalProfilers.h"
#include "core/testing/InternalSettings.h"
@@ -1927,6 +1928,11 @@ PrivateScriptTest* Internals::privateScriptTest() const
return PrivateScriptTest::create(frame());
}
+DictionaryTest* Internals::dictionaryTest() const
+{
+ return DictionaryTest::create();
+}
+
Vector<String> Internals::getReferencedFilePaths() const
{
return frame()->loader().currentItem()->getReferencedFilePaths();

Powered by Google App Engine
This is Rietveld 408576698