Index: chrome/test/ui/ui_test.h |
=================================================================== |
--- chrome/test/ui/ui_test.h (revision 92173) |
+++ chrome/test/ui/ui_test.h (working copy) |
@@ -31,12 +31,15 @@ |
class AutomationProxy; |
class BrowserProxy; |
-class DictionaryValue; |
class FilePath; |
class GURL; |
class ScopedTempDir; |
class TabProxy; |
+namespace base { |
+class DictionaryValue; |
+} |
+ |
// Base class for UI Tests. This implements the core of the functions. |
// This base class decouples all automation functionality from testing |
// infrastructure, for use without gtest. |
@@ -376,12 +379,12 @@ |
// Returns a copy of local state preferences. The caller is responsible for |
// deleting the returned object. Returns NULL if there is an error. |
- DictionaryValue* GetLocalState(); |
+ base::DictionaryValue* GetLocalState(); |
// Returns a copy of the default profile preferences. The caller is |
// responsible for deleting the returned object. Returns NULL if there is an |
// error. |
- DictionaryValue* GetDefaultProfilePreferences(); |
+ base::DictionaryValue* GetDefaultProfilePreferences(); |
// Waits for the test case to finish. |
// ASSERTS if there are test failures. |