| Index: chrome/browser/ui/webui/options2/manage_profile_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options2/manage_profile_handler.cc b/chrome/browser/ui/webui/options2/manage_profile_handler.cc
|
| index 5d050dd37b098462f115f068a173dc8d3658fae0..c59176c2c8e70256eef5389c5b613c7aaf966ae9 100644
|
| --- a/chrome/browser/ui/webui/options2/manage_profile_handler.cc
|
| +++ b/chrome/browser/ui/webui/options2/manage_profile_handler.cc
|
| @@ -141,7 +141,7 @@ void ManageProfileHandler::SendProfileNames() {
|
| void ManageProfileHandler::SetProfileNameAndIcon(const ListValue* args) {
|
| DCHECK(args);
|
|
|
| - Value* file_path_value;
|
| + const Value* file_path_value;
|
| FilePath profile_file_path;
|
| if (!args->Get(0, &file_path_value) ||
|
| !base::GetValueAsFilePath(*file_path_value, &profile_file_path))
|
| @@ -228,7 +228,7 @@ void ManageProfileHandler::DeleteProfile(const ListValue* args) {
|
|
|
| ProfileMetrics::LogProfileDeleteUser(ProfileMetrics::PROFILE_DELETED);
|
|
|
| - Value* file_path_value;
|
| + const Value* file_path_value;
|
| FilePath profile_file_path;
|
| if (!args->Get(0, &file_path_value) ||
|
| !base::GetValueAsFilePath(*file_path_value, &profile_file_path))
|
| @@ -242,7 +242,7 @@ void ManageProfileHandler::ProfileIconSelectionChanged(
|
| const base::ListValue* args) {
|
| DCHECK(args);
|
|
|
| - Value* file_path_value;
|
| + const Value* file_path_value;
|
| FilePath file_path;
|
| if (!args->Get(0, &file_path_value) ||
|
| !base::GetValueAsFilePath(*file_path_value, &file_path)) {
|
|
|