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

Unified Diff: chrome/browser/ui/gtk/js_modal_dialog_gtk.h

Issue 6627038: gtk: Rename OnDialogResponse() to OnResponse() to standardize on a consistent naming scheme. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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/gtk/js_modal_dialog_gtk.h
diff --git a/chrome/browser/ui/gtk/js_modal_dialog_gtk.h b/chrome/browser/ui/gtk/js_modal_dialog_gtk.h
index 5626651501b0a533b6f2d50d177f98d6d721f618..082731ebfb31ab8577c8f46e6d355f95ba092d6a 100644
--- a/chrome/browser/ui/gtk/js_modal_dialog_gtk.h
+++ b/chrome/browser/ui/gtk/js_modal_dialog_gtk.h
@@ -22,7 +22,7 @@ class JSModalDialogGtk : public NativeAppModalDialog {
gfx::NativeWindow parent_window);
virtual ~JSModalDialogGtk();
- // Overridden from NativeAppModalDialog:
+ // NativeAppModalDialog:
virtual int GetAppModalDialogButtons() const;
virtual void ShowAppModalDialog();
virtual void ActivateAppModalDialog();
@@ -31,7 +31,7 @@ class JSModalDialogGtk : public NativeAppModalDialog {
virtual void CancelAppModalDialog();
private:
- CHROMEGTK_CALLBACK_1(JSModalDialogGtk, void, OnDialogResponse, int);
+ CHROMEGTK_CALLBACK_1(JSModalDialogGtk, void, OnResponse, int);
scoped_ptr<JavaScriptAppModalDialog> dialog_;
GtkWidget* gtk_dialog_;

Powered by Google App Engine
This is Rietveld 408576698