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

Unified Diff: chrome/test/values_test_util.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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
« no previous file with comments | « chrome/test/ui_test_utils.h ('k') | chrome/test/webdriver/automation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/values_test_util.h
===================================================================
--- chrome/test/values_test_util.h (revision 92173)
+++ chrome/test/values_test_util.h (working copy)
@@ -8,9 +8,11 @@
#include <string>
+namespace base {
class DictionaryValue;
class ListValue;
class StringValue;
+}
namespace test {
@@ -18,27 +20,28 @@
// the given dictionary equals the given expected value.
void ExpectDictBooleanValue(bool expected_value,
- const DictionaryValue& value,
+ const base::DictionaryValue& value,
const std::string& key);
-void ExpectDictDictionaryValue(const DictionaryValue& expected_value,
- const DictionaryValue& value,
+void ExpectDictDictionaryValue(const base::DictionaryValue& expected_value,
+ const base::DictionaryValue& value,
const std::string& key);
void ExpectDictIntegerValue(int expected_value,
- const DictionaryValue& value,
+ const base::DictionaryValue& value,
const std::string& key);
-void ExpectDictListValue(const ListValue& expected_value,
- const DictionaryValue& value,
+void ExpectDictListValue(const base::ListValue& expected_value,
+ const base::DictionaryValue& value,
const std::string& key);
void ExpectDictStringValue(const std::string& expected_value,
- const DictionaryValue& value,
+ const base::DictionaryValue& value,
const std::string& key);
// Takes ownership of |actual|.
-void ExpectStringValue(const std::string& expected_str, StringValue* actual);
+void ExpectStringValue(const std::string& expected_str,
+ base::StringValue* actual);
} // namespace test
« no previous file with comments | « chrome/test/ui_test_utils.h ('k') | chrome/test/webdriver/automation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698