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

Unified Diff: content/renderer/origin_trials/trial_token_validator.h

Issue 1742053002: Move trial token code to content/common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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: content/renderer/origin_trials/trial_token_validator.h
diff --git a/content/renderer/origin_trials/trial_token_validator.h b/content/renderer/origin_trials/trial_token_validator.h
deleted file mode 100644
index 4d877fc91406a5d2446b13605627a512e05451a9..0000000000000000000000000000000000000000
--- a/content/renderer/origin_trials/trial_token_validator.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_RENDERER_ORIGIN_TRIALS_TRIAL_TOKEN_VALIDATOR_H_
-#define CONTENT_RENDERER_ORIGIN_TRIALS_TRIAL_TOKEN_VALIDATOR_H_
-
-#include <string>
-#include "content/common/content_export.h"
-#include "third_party/WebKit/public/platform/WebTrialTokenValidator.h"
-
-namespace content {
-
-// The TrialTokenValidator is called by the Experimental Framework code in Blink
-// to validate tokens to enable experimental features.
-//
-// This class is thread-safe.
-class CONTENT_EXPORT TrialTokenValidator
- : public NON_EXPORTED_BASE(blink::WebTrialTokenValidator) {
- public:
- TrialTokenValidator();
- ~TrialTokenValidator() override;
-
- // blink::WebTrialTokenValidator implementation
- bool validateToken(const blink::WebString& token,
- const blink::WebSecurityOrigin& origin,
- const blink::WebString& featureName) override;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(TrialTokenValidator);
-};
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_ORIGIN_TRIALS_TRIAL_TOKEN_VALIDATOR_H_

Powered by Google App Engine
This is Rietveld 408576698