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

Unified Diff: chrome/browser/ui/gtk/options/content_exception_editor.cc

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/options/content_exception_editor.cc
diff --git a/chrome/browser/ui/gtk/options/content_exception_editor.cc b/chrome/browser/ui/gtk/options/content_exception_editor.cc
index 1b5eadc9ca14942c8c2e1b41f598203f47485527..e31078c5ea1c6bbd03643d223fa9fdf200eb41c5 100644
--- a/chrome/browser/ui/gtk/options/content_exception_editor.cc
+++ b/chrome/browser/ui/gtk/options/content_exception_editor.cc
@@ -116,7 +116,7 @@ void ContentExceptionEditor::OnEntryChanged(GtkWidget* entry) {
UpdateImage(pattern_image_, is_valid);
}
-void ContentExceptionEditor::OnResponse(GtkWidget* sender, int response_id) {
+void ContentExceptionEditor::OnResponse(GtkWidget* dialog, int response_id) {
if (response_id == GTK_RESPONSE_OK) {
// Notify our delegate to update everything.
ContentSettingsPattern new_pattern(gtk_entry_get_text(GTK_ENTRY(entry_)));

Powered by Google App Engine
This is Rietveld 408576698