diff options
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r-- | chrome/test/ui/ui_test.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/test/ui/ui_test.h b/chrome/test/ui/ui_test.h index 6dc0c7d..a0f4ec6 100644 --- a/chrome/test/ui/ui_test.h +++ b/chrome/test/ui/ui_test.h @@ -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 @@ class UITest : public UITestBase, public PlatformTest { // 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. |