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

Unified Diff: content/browser/tab_contents/tab_contents_delegate.cc

Issue 8553001: views: Add an Options enum to MessageBoxView control. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: adding an IPC_MESSAGE_EXPORT to line 30 of param_traits_macro.h makes it link in shared build Created 9 years 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
« no previous file with comments | « content/browser/tab_contents/tab_contents.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tab_contents/tab_contents_delegate.cc
diff --git a/content/browser/tab_contents/tab_contents_delegate.cc b/content/browser/tab_contents/tab_contents_delegate.cc
index e8ca205142606447d91cc9391e5eb4a0baf634d9..f88e99ebfbbbefb9a19cd23c51a2e0b67bdae000 100644
--- a/content/browser/tab_contents/tab_contents_delegate.cc
+++ b/content/browser/tab_contents/tab_contents_delegate.cc
@@ -234,14 +234,15 @@ class JavaScriptDialogCreatorStub : public content::JavaScriptDialogCreator {
return Singleton<JavaScriptDialogCreatorStub>::get();
}
- virtual void RunJavaScriptDialog(content::JavaScriptDialogDelegate* delegate,
- TitleType title_type,
- const string16& title,
- int dialog_flags,
- const string16& message_text,
- const string16& default_prompt_text,
- IPC::Message* reply_message,
- bool* did_suppress_message) OVERRIDE {
+ virtual void RunJavaScriptDialog(
+ content::JavaScriptDialogDelegate* delegate,
+ TitleType title_type,
+ const string16& title,
+ ui::JavascriptMessageType javascript_message_type,
+ const string16& message_text,
+ const string16& default_prompt_text,
+ IPC::Message* reply_message,
+ bool* did_suppress_message) OVERRIDE {
*did_suppress_message = true;
}
« no previous file with comments | « content/browser/tab_contents/tab_contents.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698