summaryrefslogtreecommitdiffstats
path: root/content/browser/ssl
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-10 17:05:26 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-10 17:05:26 +0000
commitb172aee74fde14b0a79e144572a959b8b436c473 (patch)
tree45216b5f334088e8ab5a9097555e047bae8eea32 /content/browser/ssl
parent33190c88674bc70d431bafe9eba88cbe05652b60 (diff)
downloadchromium_src-b172aee74fde14b0a79e144572a959b8b436c473.zip
chromium_src-b172aee74fde14b0a79e144572a959b8b436c473.tar.gz
chromium_src-b172aee74fde14b0a79e144572a959b8b436c473.tar.bz2
TabContents -> WebContentsImpl, part 1.
BUG=105875 TEST=no change Review URL: http://codereview.chromium.org/10024034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131571 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/ssl')
-rw-r--r--content/browser/ssl/ssl_policy.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/ssl/ssl_policy.h b/content/browser/ssl/ssl_policy.h
index 8302645..686d5c2 100644
--- a/content/browser/ssl/ssl_policy.h
+++ b/content/browser/ssl/ssl_policy.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -14,7 +14,7 @@
class SSLCertErrorHandler;
class SSLPolicyBackend;
class SSLRequestInfo;
-class TabContents;
+class WebContentsImpl;
namespace content {
class NavigationEntryImpl;
@@ -42,7 +42,7 @@ class SSLPolicy {
// Update the SSL information in |entry| to match the current state.
// |tab_contents| is the TabContents associated with this entry.
void UpdateEntry(content::NavigationEntryImpl* entry,
- TabContents* tab_contents);
+ WebContentsImpl* web_contents);
SSLPolicyBackend* backend() const { return backend_; }