Index: chrome/common/chrome_content_client.h |
diff --git a/chrome/common/chrome_content_client.h b/chrome/common/chrome_content_client.h |
index 33515eabfbe98cc527570f093a24db49e4e4f162..5ff6044178884ed1a634fc02838b6a33f5fce665 100644 |
--- a/chrome/common/chrome_content_client.h |
+++ b/chrome/common/chrome_content_client.h |
@@ -11,6 +11,7 @@ |
#include "base/compiler_specific.h" |
#include "base/files/file_path.h" |
#include "build/build_config.h" |
+#include "chrome/common/origin_trials/origin_trial_key_manager.h" |
#include "content/public/common/content_client.h" |
#if defined(ENABLE_PLUGINS) |
@@ -85,6 +86,11 @@ class ChromeContentClient : public content::ContentClient { |
void AddServiceWorkerSchemes(std::set<std::string>* schemes) override; |
bool IsSupplementarySiteIsolationModeEnabled() override; |
+ |
+ base::StringPiece GetOriginTrialPublicKey() override; |
+ |
+ private: |
+ ChromeOriginTrialKeyManager origin_trial_key_manager_; |
}; |
#endif // CHROME_COMMON_CHROME_CONTENT_CLIENT_H_ |