Index: content/public/browser/web_contents_delegate.cc |
diff --git a/content/public/browser/web_contents_delegate.cc b/content/public/browser/web_contents_delegate.cc |
index 0c115485373aada775881c693013dc578da3d0aa..3e9398af305e1afd44baea98b95d82ed4e04d192 100644 |
--- a/content/public/browser/web_contents_delegate.cc |
+++ b/content/public/browser/web_contents_delegate.cc |
@@ -44,7 +44,7 @@ bool WebContentsDelegate::ShouldSuppressDialogs() { |
return false; |
} |
-void WebContentsDelegate::BeforeUnloadFired(WebContents* tab, |
+void WebContentsDelegate::BeforeUnloadFired(WebContents* web_contents, |
bool proceed, |
bool* proceed_to_fire_unload) { |
*proceed_to_fire_unload = true; |
@@ -134,18 +134,19 @@ JavaScriptDialogCreator* WebContentsDelegate::GetJavaScriptDialogCreator() { |
} |
bool WebContentsDelegate::IsFullscreenForTabOrPending( |
- const WebContents* tab) const { |
+ const WebContents* web_contents) const { |
return false; |
} |
-content::ColorChooser* WebContentsDelegate::OpenColorChooser(WebContents* tab, |
+content::ColorChooser* WebContentsDelegate::OpenColorChooser( |
+ WebContents* web_contents, |
int color_chooser_id, |
const SkColor& color) { |
return NULL; |
} |
void WebContentsDelegate::WebIntentDispatch( |
- WebContents* tab, |
+ WebContents* web_contents, |
WebIntentsDispatcher* intents_dispatcher) { |
// The caller passes this method ownership of the |intents_dispatcher|, but |
// this empty implementation will not use it, so we delete it immediately. |