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

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

Issue 3040034: Block non-sandboxed plugins. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: fix indentation; sync Created 10 years, 4 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/render_messages.h" 8 #include "chrome/common/render_messages.h"
9 #include "chrome/common/renderer_preferences.h" 9 #include "chrome/common/renderer_preferences.h"
10 #include "gfx/rect.h" 10 #include "gfx/rect.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 RenderViewHostDelegate::AutoFill* 61 RenderViewHostDelegate::AutoFill*
62 RenderViewHostDelegate::GetAutoFillDelegate() { 62 RenderViewHostDelegate::GetAutoFillDelegate() {
63 return NULL; 63 return NULL;
64 } 64 }
65 65
66 RenderViewHostDelegate::BookmarkDrag* 66 RenderViewHostDelegate::BookmarkDrag*
67 RenderViewHostDelegate::GetBookmarkDragDelegate() { 67 RenderViewHostDelegate::GetBookmarkDragDelegate() {
68 return NULL; 68 return NULL;
69 } 69 }
70 70
71 RenderViewHostDelegate::BlockedPlugin*
72 RenderViewHostDelegate::GetBlockedPluginDelegate() {
73 return NULL;
74 }
75
71 RenderViewHostDelegate::SSL* 76 RenderViewHostDelegate::SSL*
72 RenderViewHostDelegate::GetSSLDelegate() { 77 RenderViewHostDelegate::GetSSLDelegate() {
73 return NULL; 78 return NULL;
74 } 79 }
75 80
76 AutomationResourceRoutingDelegate* 81 AutomationResourceRoutingDelegate*
77 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() { 82 RenderViewHostDelegate::GetAutomationResourceRoutingDelegate() {
78 return NULL; 83 return NULL;
79 } 84 }
80 85
(...skipping 18 matching lines...) Expand all
99 return WebPreferences(); 104 return WebPreferences();
100 } 105 }
101 106
102 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { 107 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const {
103 return gfx::Rect(); 108 return gfx::Rect();
104 } 109 }
105 110
106 bool RenderViewHostDelegate::IsExternalTabContainer() const { 111 bool RenderViewHostDelegate::IsExternalTabContainer() const {
107 return false; 112 return false;
108 } 113 }
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_delegate.h ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698