diff options
Diffstat (limited to 'chrome/test/webdriver/utility_functions.h')
-rw-r--r-- | chrome/test/webdriver/utility_functions.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/test/webdriver/utility_functions.h b/chrome/test/webdriver/utility_functions.h index b0a449d..701c2703 100644 --- a/chrome/test/webdriver/utility_functions.h +++ b/chrome/test/webdriver/utility_functions.h @@ -7,7 +7,9 @@ #include <string> +namespace base { class Value; +} namespace webdriver { @@ -15,7 +17,7 @@ namespace webdriver { std::string GenerateRandomID(); // Returns the equivalent JSON string for the given value. -std::string JsonStringify(const Value* value); +std::string JsonStringify(const base::Value* value); } // namespace webdriver |