OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 const GURL& target_url, | 84 const GURL& target_url, |
85 const content::Referrer& referrer, | 85 const content::Referrer& referrer, |
86 WindowOpenDisposition disposition, | 86 WindowOpenDisposition disposition, |
87 const blink::WebWindowFeatures& features, | 87 const blink::WebWindowFeatures& features, |
88 bool user_gesture, | 88 bool user_gesture, |
89 bool opener_suppressed, | 89 bool opener_suppressed, |
90 content::ResourceContext* context, | 90 content::ResourceContext* context, |
91 int render_process_id, | 91 int render_process_id, |
92 int opener_id, | 92 int opener_id, |
93 bool* no_javascript_access) override; | 93 bool* no_javascript_access) override; |
94 content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; | |
95 void GetAdditionalMappedFilesForChildProcess( | 94 void GetAdditionalMappedFilesForChildProcess( |
96 const base::CommandLine& command_line, | 95 const base::CommandLine& command_line, |
97 int child_process_id, | 96 int child_process_id, |
98 content::FileDescriptorInfo* mappings) override; | 97 content::FileDescriptorInfo* mappings) override; |
99 #if defined(OS_ANDROID) && defined(VIDEO_HOLE) | 98 #if defined(OS_ANDROID) && defined(VIDEO_HOLE) |
100 content::ExternalVideoSurfaceContainer* | 99 content::ExternalVideoSurfaceContainer* |
101 OverrideCreateExternalVideoSurfaceContainer( | 100 OverrideCreateExternalVideoSurfaceContainer( |
102 content::WebContents* web_contents) override; | 101 content::WebContents* web_contents) override; |
103 #endif // defined(OS_ANDROID) && defined(VIDEO_HOLE) | 102 #endif // defined(OS_ANDROID) && defined(VIDEO_HOLE) |
104 | 103 |
(...skipping 22 matching lines...) Expand all Loading... |
127 | 126 |
128 scoped_ptr<URLRequestContextFactory> url_request_context_factory_; | 127 scoped_ptr<URLRequestContextFactory> url_request_context_factory_; |
129 | 128 |
130 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 129 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
131 }; | 130 }; |
132 | 131 |
133 } // namespace shell | 132 } // namespace shell |
134 } // namespace chromecast | 133 } // namespace chromecast |
135 | 134 |
136 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 135 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |