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

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

Issue 131783012: Fix the handling of user gestures for external protocol handler dialogs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: kalman comment Created 6 years, 8 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 | Annotate | Revision Log
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/resource_dispatcher_host_delegate.h" 5 #include "content/public/browser/resource_dispatcher_host_delegate.h"
6 6
7 #include "content/public/browser/stream_handle.h" 7 #include "content/public/browser/stream_handle.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 30 matching lines...) Expand all
41 41
42 ResourceDispatcherHostLoginDelegate* 42 ResourceDispatcherHostLoginDelegate*
43 ResourceDispatcherHostDelegate::CreateLoginDelegate( 43 ResourceDispatcherHostDelegate::CreateLoginDelegate(
44 net::AuthChallengeInfo* auth_info, 44 net::AuthChallengeInfo* auth_info,
45 net::URLRequest* request) { 45 net::URLRequest* request) {
46 return NULL; 46 return NULL;
47 } 47 }
48 48
49 bool ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url, 49 bool ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url,
50 int child_id, 50 int child_id,
51 int route_id) { 51 int route_id,
52 bool user_gesture) {
52 return true; 53 return true;
53 } 54 }
54 55
55 bool ResourceDispatcherHostDelegate::ShouldForceDownloadResource( 56 bool ResourceDispatcherHostDelegate::ShouldForceDownloadResource(
56 const GURL& url, 57 const GURL& url,
57 const std::string& mime_type) { 58 const std::string& mime_type) {
58 return false; 59 return false;
59 } 60 }
60 61
61 bool ResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream( 62 bool ResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream(
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 net::URLRequest* url_request) { 95 net::URLRequest* url_request) {
95 } 96 }
96 97
97 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { 98 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() {
98 } 99 }
99 100
100 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { 101 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() {
101 } 102 }
102 103
103 } // namespace content 104 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698