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

Side by Side Diff: chrome/browser/renderer_host/render_view_host_delegate.cc

Issue 2823038: Refactor SSLClientAuthHandler and certificate selection (Closed)
Patch Set: Rebase the patch Created 10 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/renderer_host/render_view_host_delegate.h" 5 #include "chrome/browser/renderer_host/render_view_host_delegate.h"
6 6
7 #include "base/singleton.h" 7 #include "base/singleton.h"
8 #include "chrome/common/renderer_preferences.h" 8 #include "chrome/common/renderer_preferences.h"
9 #include "gfx/rect.h" 9 #include "gfx/rect.h"
10 #include "googleurl/src/gurl.h" 10 #include "googleurl/src/gurl.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 RenderViewHostDelegate::AutoFill* 60 RenderViewHostDelegate::AutoFill*
61 RenderViewHostDelegate::GetAutoFillDelegate() { 61 RenderViewHostDelegate::GetAutoFillDelegate() {
62 return NULL; 62 return NULL;
63 } 63 }
64 64
65 RenderViewHostDelegate::BookmarkDrag* 65 RenderViewHostDelegate::BookmarkDrag*
66 RenderViewHostDelegate::GetBookmarkDragDelegate() { 66 RenderViewHostDelegate::GetBookmarkDragDelegate() {
67 return NULL; 67 return NULL;
68 } 68 }
69 69
70 RenderViewHostDelegate::SSL*
71 RenderViewHostDelegate::GetSSLDelegate() {
72 return NULL;
73 }
74
70 AutomationResourceRoutingDelegate* 75 AutomationResourceRoutingDelegate*
71 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { 76 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() {
72 return NULL; 77 return NULL;
73 } 78 }
74 79
75 const GURL& RenderViewHostDelegate::GetURL() const { 80 const GURL& RenderViewHostDelegate::GetURL() const {
76 return GURL::EmptyGURL(); 81 return GURL::EmptyGURL();
77 } 82 }
78 83
79 TabContents* RenderViewHostDelegate::GetAsTabContents() { 84 TabContents* RenderViewHostDelegate::GetAsTabContents() {
(...skipping 12 matching lines...) Expand all
92 return true; 97 return true;
93 } 98 }
94 99
95 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { 100 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const {
96 return gfx::Rect(); 101 return gfx::Rect();
97 } 102 }
98 103
99 bool RenderViewHostDelegate::IsExternalTabContainer() const { 104 bool RenderViewHostDelegate::IsExternalTabContainer() const {
100 return false; 105 return false;
101 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698