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

Side by Side Diff: content/browser/frame_host/render_frame_host_delegate.cc

Issue 2674353003: Enable WebViewAccessiblityTest for OOPIF webview. (Closed)
Patch Set: Address dmazzoni comments. Created 3 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <stddef.h> 5 #include <stddef.h>
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "content/browser/frame_host/render_frame_host_delegate.h" 10 #include "content/browser/frame_host/render_frame_host_delegate.h"
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 RenderFrameHostDelegate::GetScreenOrientationProvider() { 86 RenderFrameHostDelegate::GetScreenOrientationProvider() {
87 return nullptr; 87 return nullptr;
88 } 88 }
89 89
90 bool RenderFrameHostDelegate::ShouldRouteMessageEvent( 90 bool RenderFrameHostDelegate::ShouldRouteMessageEvent(
91 RenderFrameHost* target_rfh, 91 RenderFrameHost* target_rfh,
92 SiteInstance* source_site_instance) const { 92 SiteInstance* source_site_instance) const {
93 return false; 93 return false;
94 } 94 }
95 95
96 RenderFrameHost*
97 RenderFrameHostDelegate::GetFocusedFrameIncludingInnerWebContents() {
98 return nullptr;
99 }
100
96 std::unique_ptr<WebUIImpl> 101 std::unique_ptr<WebUIImpl>
97 RenderFrameHostDelegate::CreateWebUIForRenderFrameHost(const GURL& url) { 102 RenderFrameHostDelegate::CreateWebUIForRenderFrameHost(const GURL& url) {
98 return nullptr; 103 return nullptr;
99 } 104 }
100 105
101 } // namespace content 106 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698