| Index: ios/chrome/browser/experimental_flags.h
|
| diff --git a/ios/chrome/browser/experimental_flags.h b/ios/chrome/browser/experimental_flags.h
|
| index b0972229add99ea89935758a3a05dc2ee982fe0b..a262864ea01c00c75a2dcc2cb9f79a65bfa7289f 100644
|
| --- a/ios/chrome/browser/experimental_flags.h
|
| +++ b/ios/chrome/browser/experimental_flags.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_
|
| #define IOS_CHROME_BROWSER_EXPERIMENTAL_FLAGS_H_
|
|
|
| +#include <string>
|
| +
|
| // This file can be empty. Its purpose is to contain the relatively short lived
|
| // declarations required for experimental flags.
|
|
|
| @@ -30,6 +32,10 @@ bool IsLRUSnapshotCacheEnabled();
|
| // The returned value will not change within a given session.
|
| bool IsWKWebViewEnabled();
|
|
|
| +// Returns a string containing extra params that should be sent along with
|
| +// omnibox search requests. The returned value contains a leading "&".
|
| +std::string GetWKWebViewSearchParams();
|
| +
|
| // Whether keyboard commands are supported.
|
| bool AreKeyboardCommandsEnabled();
|
|
|
|
|