diff options
Diffstat (limited to 'chrome/browser/ui/simple_message_box.h')
-rw-r--r-- | chrome/browser/ui/simple_message_box.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/ui/simple_message_box.h b/chrome/browser/ui/simple_message_box.h index 5ce59e6..c289379 100644 --- a/chrome/browser/ui/simple_message_box.h +++ b/chrome/browser/ui/simple_message_box.h @@ -31,8 +31,8 @@ enum MessageBoxType { // We have a variety of other surfaces such as wrench menu notifications and // infobars; consult the UI leads for a recommendation. MessageBoxResult ShowMessageBox(gfx::NativeWindow parent, - const string16& title, - const string16& message, + const base::string16& title, + const base::string16& message, MessageBoxType type); // Shows a dialog box with the given |title| and |message|, and with two buttons @@ -43,10 +43,10 @@ MessageBoxResult ShowMessageBox(gfx::NativeWindow parent, // We have a variety of other surfaces such as wrench menu notifications and // infobars; consult the UI leads for a recommendation. MessageBoxResult ShowMessageBoxWithButtonText(gfx::NativeWindow parent, - const string16& title, - const string16& message, - const string16& yes_text, - const string16& no_text); + const base::string16& title, + const base::string16& message, + const base::string16& yes_text, + const base::string16& no_text); } // namespace chrome |