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

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

Issue 3547008: Handle resize corner layout entirely in the platform BrowserWindow*/BrowserView* code... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 | Annotate | Revision Log
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/render_messages_params.h" 9 #include "chrome/common/render_messages_params.h"
10 #include "chrome/common/renderer_preferences.h" 10 #include "chrome/common/renderer_preferences.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 97 }
98 98
99 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const { 99 GURL RenderViewHostDelegate::GetAlternateErrorPageURL() const {
100 return GURL(); 100 return GURL();
101 } 101 }
102 102
103 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() { 103 WebPreferences RenderViewHostDelegate::GetWebkitPrefs() {
104 return WebPreferences(); 104 return WebPreferences();
105 } 105 }
106 106
107 gfx::Rect RenderViewHostDelegate::GetRootWindowResizerRect() const {
108 return gfx::Rect();
109 }
110
111 bool RenderViewHostDelegate::IsExternalTabContainer() const { 107 bool RenderViewHostDelegate::IsExternalTabContainer() const {
112 return false; 108 return false;
113 } 109 }
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