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

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

Issue 2812056: Relanding http://codereview.chromium.org/2870050/show. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: rebased 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 } 81 }
82 82
83 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { 83 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const {
84 return GURL(); 84 return GURL();
85 } 85 }
86 86
87 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { 87 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() {
88 return WebPreferences(); 88 return WebPreferences();
89 } 89 }
90 90
91 bool RenderViewHostDelegate::CanBlur() const {
92 return true;
93 }
94
95 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const { 91 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const {
96 return gfx::Rect(); 92 return gfx::Rect();
97 } 93 }
98 94
99 bool RenderViewHostDelegate::IsExternalTabContainer() const { 95 bool RenderViewHostDelegate::IsExternalTabContainer() const {
100 return false; 96 return false;
101 } 97 }
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_delegate.h ('k') | chrome/browser/renderer_host/render_widget_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698