diff options
Diffstat (limited to 'chrome/browser/ui/views')
-rw-r--r-- | chrome/browser/ui/views/about_ipc_dialog.cc | 2 | ||||
-rw-r--r-- | chrome/browser/ui/views/chrome_views_delegate.cc | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/ui/views/about_ipc_dialog.cc b/chrome/browser/ui/views/about_ipc_dialog.cc index 35427fa..474a8d1 100644 --- a/chrome/browser/ui/views/about_ipc_dialog.cc +++ b/chrome/browser/ui/views/about_ipc_dialog.cc @@ -128,7 +128,7 @@ void CloseDialog() { PrefService* prefs = current_profile->GetPrefs(); if (!prefs->FindPreference(prefs::kIpcDisabledMessages)) return; - ListValue* list = prefs->GetMutableList(prefs::kIpcDisabledMessages); + base::ListValue* list = prefs->GetMutableList(prefs::kIpcDisabledMessages); list->Clear(); for (std::set<int>::const_iterator itr = disabled_messages_.begin(); itr != disabled_messages_.end(); diff --git a/chrome/browser/ui/views/chrome_views_delegate.cc b/chrome/browser/ui/views/chrome_views_delegate.cc index b1faf5a..8bb3526 100644 --- a/chrome/browser/ui/views/chrome_views_delegate.cc +++ b/chrome/browser/ui/views/chrome_views_delegate.cc @@ -79,7 +79,7 @@ void ChromeViewsDelegate::SaveWindowPlacement(const views::Widget* window, DCHECK(prefs->FindPreference(window_name.c_str())); DictionaryPrefUpdate update(prefs, window_name.c_str()); - DictionaryValue* window_preferences = update.Get(); + base::DictionaryValue* window_preferences = update.Get(); window_preferences->SetInteger("left", bounds.x()); window_preferences->SetInteger("top", bounds.y()); window_preferences->SetInteger("right", bounds.right()); @@ -104,7 +104,8 @@ bool ChromeViewsDelegate::GetSavedWindowPlacement( return false; DCHECK(prefs->FindPreference(window_name.c_str())); - const DictionaryValue* dictionary = prefs->GetDictionary(window_name.c_str()); + const base::DictionaryValue* dictionary = + prefs->GetDictionary(window_name.c_str()); int left, top, right, bottom; if (!dictionary || !dictionary->GetInteger("left", &left) || !dictionary->GetInteger("top", &top) || |