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

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

Issue 2340323002: Add Origin Trials Test interface, rather than attaching trials directly to internals. (Closed)
Patch Set: IDL-backed methods are not static on full interfaces Created 4 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: third_party/WebKit/Source/core/testing/Internals.cpp
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
index d1c86963cca7d3e5375da5107164133beaa3df5e..398bf45faa24aadf4ae1182f6fd89aa6eeb2bc46 100644
--- a/third_party/WebKit/Source/core/testing/Internals.cpp
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp
@@ -124,6 +124,7 @@
#include "core/testing/LayerRect.h"
#include "core/testing/LayerRectList.h"
#include "core/testing/MockHyphenation.h"
+#include "core/testing/OriginTrialsTest.h"
#include "core/testing/PrivateScriptTest.h"
#include "core/testing/TypeConversions.h"
#include "core/testing/UnionTypesTest.h"
@@ -1983,6 +1984,11 @@ UnionTypesTest* Internals::unionTypesTest() const
return UnionTypesTest::create();
}
+OriginTrialsTest* Internals::originTrialsTest() const
+{
+ return OriginTrialsTest::create();
+}
+
Vector<String> Internals::getReferencedFilePaths() const
{
if (!frame())

Powered by Google App Engine
This is Rietveld 408576698