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

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 1086283002: Track frame openers in FrameTreeNodes instead of WebContents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Second round of feedback Created 5 years, 6 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
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/browser/web_contents.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/public/browser/content_browser_client.h" 5 #include "content/public/browser/content_browser_client.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "content/public/browser/client_certificate_delegate.h" 8 #include "content/public/browser/client_certificate_delegate.h"
9 #include "ui/gfx/image/image_skia.h" 9 #include "ui/gfx/image/image_skia.h"
10 #include "url/gurl.h" 10 #include "url/gurl.h"
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 const GURL& source_origin, 237 const GURL& source_origin,
238 WindowContainerType container_type, 238 WindowContainerType container_type,
239 const GURL& target_url, 239 const GURL& target_url,
240 const Referrer& referrer, 240 const Referrer& referrer,
241 WindowOpenDisposition disposition, 241 WindowOpenDisposition disposition,
242 const blink::WebWindowFeatures& features, 242 const blink::WebWindowFeatures& features,
243 bool user_gesture, 243 bool user_gesture,
244 bool opener_suppressed, 244 bool opener_suppressed,
245 ResourceContext* context, 245 ResourceContext* context,
246 int render_process_id, 246 int render_process_id,
247 int opener_id, 247 int opener_render_view_id,
248 int opener_render_frame_id,
248 bool* no_javascript_access) { 249 bool* no_javascript_access) {
249 *no_javascript_access = false; 250 *no_javascript_access = false;
250 return true; 251 return true;
251 } 252 }
252 253
253 SpeechRecognitionManagerDelegate* 254 SpeechRecognitionManagerDelegate*
254 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() { 255 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() {
255 return nullptr; 256 return nullptr;
256 } 257 }
257 258
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 #if defined(VIDEO_HOLE) 340 #if defined(VIDEO_HOLE)
340 ExternalVideoSurfaceContainer* 341 ExternalVideoSurfaceContainer*
341 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( 342 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer(
342 WebContents* web_contents) { 343 WebContents* web_contents) {
343 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348."; 344 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348.";
344 return nullptr; 345 return nullptr;
345 } 346 }
346 #endif 347 #endif
347 348
348 } // namespace content 349 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/browser/web_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698