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

Unified Diff: chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.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/options/chromeos/change_picture_options_handler.h
===================================================================
--- chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h (revision 92173)
+++ chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h (working copy)
@@ -9,8 +9,10 @@
#include "chrome/browser/ui/webui/options/options_ui.h"
#include "ui/gfx/native_widget_types.h"
+namespace base {
class DictionaryValue;
class ListValue;
+}
namespace chromeos {
@@ -22,23 +24,23 @@
virtual ~ChangePictureOptionsHandler();
// OptionsPageUIHandler implementation.
- virtual void GetLocalizedValues(DictionaryValue* localized_strings);
+ virtual void GetLocalizedValues(base::DictionaryValue* localized_strings);
// WebUIMessageHandler implementation.
virtual void RegisterMessages();
private:
// Opens a file selection dialog to choose user image from file.
- void ChooseFile(const ListValue* args);
+ void ChooseFile(const base::ListValue* args);
// Opens the camera capture dialog.
- void TakePhoto(const ListValue* args);
+ void TakePhoto(const base::ListValue* args);
// Gets the list of available user images and sends it to the page.
- void GetAvailableImages(const ListValue* args);
+ void GetAvailableImages(const base::ListValue* args);
// Selects one of the available images as user's.
- void SelectImage(const ListValue* args);
+ void SelectImage(const base::ListValue* args);
// SelectFileDialog::Delegate implementation.
virtual void FileSelected(const FilePath& path, int index, void* params);

Powered by Google App Engine
This is Rietveld 408576698