| Index: content/renderer/origin_trials/web_trial_token_validator_impl.h
|
| diff --git a/content/renderer/origin_trials/web_trial_token_validator_impl.h b/content/renderer/origin_trials/web_trial_token_validator_impl.h
|
| index 7cb118774295496eeb36a4ee92d8fc3305990bd6..7a8c538e6d24d609dfdb230ff710f266cdd04db8 100644
|
| --- a/content/renderer/origin_trials/web_trial_token_validator_impl.h
|
| +++ b/content/renderer/origin_trials/web_trial_token_validator_impl.h
|
| @@ -13,8 +13,8 @@
|
|
|
| namespace content {
|
|
|
| -// The TrialTokenValidator is called by the Experimental Framework code in Blink
|
| -// to validate tokens to enable experimental features.
|
| +// The TrialTokenValidator is called by the Origin Trials Framework code in
|
| +// Blink to validate tokens to enable experimental features.
|
| //
|
| // This class is thread-safe.
|
| class CONTENT_EXPORT WebTrialTokenValidatorImpl
|
| @@ -24,9 +24,10 @@ class CONTENT_EXPORT WebTrialTokenValidatorImpl
|
| ~WebTrialTokenValidatorImpl() override;
|
|
|
| // blink::WebTrialTokenValidator implementation
|
| - bool validateToken(const blink::WebString& token,
|
| - const blink::WebSecurityOrigin& origin,
|
| - const blink::WebString& featureName) override;
|
| + blink::WebTrialTokenValidator::TokenValidationResult validateToken(
|
| + const blink::WebString& token,
|
| + const blink::WebSecurityOrigin& origin,
|
| + const blink::WebString& featureName) override;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(WebTrialTokenValidatorImpl);
|
|
|