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

Side by Side Diff: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h

Issue 1091253008: Fix an issue that external protocol in subframes are not handled on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and fix test Created 5 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 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 int route_id, 47 int route_id,
48 int request_id, 48 int request_id,
49 bool is_content_initiated, 49 bool is_content_initiated,
50 bool must_download, 50 bool must_download,
51 ScopedVector<content::ResourceThrottle>* throttles) override; 51 ScopedVector<content::ResourceThrottle>* throttles) override;
52 content::ResourceDispatcherHostLoginDelegate* CreateLoginDelegate( 52 content::ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
53 net::AuthChallengeInfo* auth_info, 53 net::AuthChallengeInfo* auth_info,
54 net::URLRequest* request) override; 54 net::URLRequest* request) override;
55 bool HandleExternalProtocol(const GURL& url, 55 bool HandleExternalProtocol(const GURL& url,
56 int child_id, 56 int child_id,
57 int route_id) override; 57 int route_id,
58 bool is_main_frame,
59 ui::PageTransition page_transition,
60 bool has_user_gesture) override;
58 bool ShouldForceDownloadResource(const GURL& url, 61 bool ShouldForceDownloadResource(const GURL& url,
59 const std::string& mime_type) override; 62 const std::string& mime_type) override;
60 bool ShouldInterceptResourceAsStream(net::URLRequest* request, 63 bool ShouldInterceptResourceAsStream(net::URLRequest* request,
61 const std::string& mime_type, 64 const std::string& mime_type,
62 GURL* origin, 65 GURL* origin,
63 std::string* payload) override; 66 std::string* payload) override;
64 void OnStreamCreated(net::URLRequest* request, 67 void OnStreamCreated(net::URLRequest* request,
65 scoped_ptr<content::StreamInfo> stream) override; 68 scoped_ptr<content::StreamInfo> stream) override;
66 void OnResponseStarted(net::URLRequest* request, 69 void OnResponseStarted(net::URLRequest* request,
67 content::ResourceContext* resource_context, 70 content::ResourceContext* resource_context,
(...skipping 28 matching lines...) Expand all
96 scoped_refptr<SafeBrowsingService> safe_browsing_; 99 scoped_refptr<SafeBrowsingService> safe_browsing_;
97 #if defined(ENABLE_EXTENSIONS) 100 #if defined(ENABLE_EXTENSIONS)
98 scoped_refptr<extensions::UserScriptListener> user_script_listener_; 101 scoped_refptr<extensions::UserScriptListener> user_script_listener_;
99 std::map<net::URLRequest*, StreamTargetInfo> stream_target_info_; 102 std::map<net::URLRequest*, StreamTargetInfo> stream_target_info_;
100 #endif 103 #endif
101 104
102 DISALLOW_COPY_AND_ASSIGN(ChromeResourceDispatcherHostDelegate); 105 DISALLOW_COPY_AND_ASSIGN(ChromeResourceDispatcherHostDelegate);
103 }; 106 };
104 107
105 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE _H_ 108 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698