summaryrefslogtreecommitdiffstats
path: root/content/public/browser/web_contents_delegate.h
diff options
context:
space:
mode:
authorlgarron <lgarron@chromium.org>2015-06-11 13:06:07 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-11 20:06:48 +0000
commit2b0748adaaf7e695a2bb5997d085b1b9e68437aa (patch)
tree309c6c722eef8af23dec1eb230cea67fb68aa279 /content/public/browser/web_contents_delegate.h
parentd76c5c03a0fdf2f681e59400dd5f03988522ba41 (diff)
downloadchromium_src-2b0748adaaf7e695a2bb5997d085b1b9e68437aa.zip
chromium_src-2b0748adaaf7e695a2bb5997d085b1b9e68437aa.tar.gz
chromium_src-2b0748adaaf7e695a2bb5997d085b1b9e68437aa.tar.bz2
Change WebContentsDelegate::GetSecurityStyle to take non-const WebContents.
Based on the discussion in https://codereview.chromium.org/1162663004 . BUG=484395 Review URL: https://codereview.chromium.org/1173213002 Cr-Commit-Position: refs/heads/master@{#334023}
Diffstat (limited to 'content/public/browser/web_contents_delegate.h')
-rw-r--r--content/public/browser/web_contents_delegate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h
index 064b87f..f191672 100644
--- a/content/public/browser/web_contents_delegate.h
+++ b/content/public/browser/web_contents_delegate.h
@@ -488,7 +488,7 @@ class CONTENT_EXPORT WebContentsDelegate {
// Can be overridden by a delegate to return the security style of the given
// |web_contents|. Returns SECURITY_STYLE_UNKNOWN if not overriden.
- virtual SecurityStyle GetSecurityStyle(const WebContents* web_contents);
+ virtual SecurityStyle GetSecurityStyle(WebContents* web_contents);
protected:
virtual ~WebContentsDelegate();