Index: content/renderer/renderer_blink_platform_impl.h |
diff --git a/content/renderer/renderer_blink_platform_impl.h b/content/renderer/renderer_blink_platform_impl.h |
index 5e938fdaadbc962365feb28773063449b7758ab8..dc6a81cf9f12bd26a22a362c3a70e8f60981c9af 100644 |
--- a/content/renderer/renderer_blink_platform_impl.h |
+++ b/content/renderer/renderer_blink_platform_impl.h |
@@ -16,6 +16,7 @@ |
#include "cc/blink/web_compositor_support_impl.h" |
#include "content/child/blink_platform_impl.h" |
#include "content/common/content_export.h" |
+#include "content/renderer/origin_trials/trial_token_validator.h" |
#include "content/renderer/webpublicsuffixlist_impl.h" |
#include "device/vibration/vibration_manager.mojom.h" |
#include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
@@ -190,6 +191,8 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
const blink::WebString& sample) override; |
void recordRapporURL(const char* metric, const blink::WebURL& url) override; |
+ blink::WebTrialTokenValidator* trialTokenValidator() override; |
+ |
// Set the PlatformEventObserverBase in |platform_event_observers_| associated |
// with |type| to |observer|. If there was already an observer associated to |
// the given |type|, it will be replaced. |
@@ -296,6 +299,8 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
+ TrialTokenValidator trial_token_validator_; |
+ |
DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
}; |