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

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

Issue 1804023002: Fix page zoom to be frame-centric for out-of-process frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove 'anonymous'. Created 4 years, 7 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/renderer_host/render_view_host_delegate.h" 5 #include "content/browser/renderer_host/render_view_host_delegate.h"
6 6
7 #include "content/public/common/web_preferences.h" 7 #include "content/public/common/web_preferences.h"
8 #include "url/gurl.h" 8 #include "url/gurl.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 18 matching lines...) Expand all
29 29
30 SessionStorageNamespaceMap 30 SessionStorageNamespaceMap
31 RenderViewHostDelegate::GetSessionStorageNamespaceMap() { 31 RenderViewHostDelegate::GetSessionStorageNamespaceMap() {
32 return SessionStorageNamespaceMap(); 32 return SessionStorageNamespaceMap();
33 } 33 }
34 34
35 FrameTree* RenderViewHostDelegate::GetFrameTree() { 35 FrameTree* RenderViewHostDelegate::GetFrameTree() {
36 return NULL; 36 return NULL;
37 } 37 }
38 38
39 double RenderViewHostDelegate::GetPendingPageZoomLevel() {
40 return 0.0;
41 }
42
39 bool RenderViewHostDelegate::IsNeverVisible() { 43 bool RenderViewHostDelegate::IsNeverVisible() {
40 return false; 44 return false;
41 } 45 }
42 46
43 bool RenderViewHostDelegate::IsVirtualKeyboardRequested() { 47 bool RenderViewHostDelegate::IsVirtualKeyboardRequested() {
44 return false; 48 return false;
45 } 49 }
46 50
47 bool RenderViewHostDelegate::IsOverridingUserAgent() { 51 bool RenderViewHostDelegate::IsOverridingUserAgent() {
48 return false; 52 return false;
49 } 53 }
50 54
51 } // namespace content 55 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698