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

Unified Diff: chrome/browser/ui/webui/chromeos/login/oobe_ui.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
Index: chrome/browser/ui/webui/chromeos/login/oobe_ui.h
===================================================================
--- chrome/browser/ui/webui/chromeos/login/oobe_ui.h (revision 92173)
+++ chrome/browser/ui/webui/chromeos/login/oobe_ui.h (working copy)
@@ -9,7 +9,9 @@
#include "chrome/browser/chromeos/login/oobe_display.h"
#include "chrome/browser/ui/webui/chrome_web_ui.h"
+namespace base {
class DictionaryValue;
+}
namespace chromeos {
class SigninScreenHandler;
@@ -24,7 +26,8 @@
virtual ~OobeMessageHandler();
// Gets localized strings to be used on the page.
- virtual void GetLocalizedStrings(DictionaryValue* localized_strings) = 0;
+ virtual void GetLocalizedStrings(
+ base::DictionaryValue* localized_strings) = 0;
// This method is called when page is ready. It propagates to inherited class
// via virtual Initialize() method (see below).
@@ -65,7 +68,7 @@
virtual ViewScreenDelegate* GetHTMLPageScreenActor();
// Collects localized strings from the owned handlers.
- void GetLocalizedStrings(DictionaryValue* localized_strings);
+ void GetLocalizedStrings(base::DictionaryValue* localized_strings);
// Initializes the handlers.
void InitializeHandlers();

Powered by Google App Engine
This is Rietveld 408576698