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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 2142523004: M52: Merge "Reland: service worker: Don't control a subframe of an insecure context" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: fix compile errors Created 4 years, 5 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 | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 content::BrowserContext* browser_context, 227 content::BrowserContext* browser_context,
228 const GURL& url, 228 const GURL& url,
229 bool private_api, 229 bool private_api,
230 const content::SocketPermissionRequest* params) override; 230 const content::SocketPermissionRequest* params) override;
231 bool IsPepperVpnProviderAPIAllowed(content::BrowserContext* browser_context, 231 bool IsPepperVpnProviderAPIAllowed(content::BrowserContext* browser_context,
232 const GURL& url) override; 232 const GURL& url) override;
233 ui::SelectFilePolicy* CreateSelectFilePolicy( 233 ui::SelectFilePolicy* CreateSelectFilePolicy(
234 content::WebContents* web_contents) override; 234 content::WebContents* web_contents) override;
235 void GetAdditionalAllowedSchemesForFileSystem( 235 void GetAdditionalAllowedSchemesForFileSystem(
236 std::vector<std::string>* additional_schemes) override; 236 std::vector<std::string>* additional_schemes) override;
237 void GetSchemesBypassingSecureContextCheckWhitelist(
238 std::set<std::string>* schemes) override;
237 void GetURLRequestAutoMountHandlers( 239 void GetURLRequestAutoMountHandlers(
238 std::vector<storage::URLRequestAutoMountHandler>* handlers) override; 240 std::vector<storage::URLRequestAutoMountHandler>* handlers) override;
239 void GetAdditionalFileSystemBackends( 241 void GetAdditionalFileSystemBackends(
240 content::BrowserContext* browser_context, 242 content::BrowserContext* browser_context,
241 const base::FilePath& storage_partition_path, 243 const base::FilePath& storage_partition_path,
242 ScopedVector<storage::FileSystemBackend>* additional_backends) override; 244 ScopedVector<storage::FileSystemBackend>* additional_backends) override;
243 content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; 245 content::DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
244 content::TracingDelegate* GetTracingDelegate() override; 246 content::TracingDelegate* GetTracingDelegate() override;
245 bool IsPluginAllowedToCallRequestOSFileHandle( 247 bool IsPluginAllowedToCallRequestOSFileHandle(
246 content::BrowserContext* browser_context, 248 content::BrowserContext* browser_context,
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 // Vector of additional ChromeContentBrowserClientParts. 341 // Vector of additional ChromeContentBrowserClientParts.
340 // Parts are deleted in the reverse order they are added. 342 // Parts are deleted in the reverse order they are added.
341 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 343 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
342 344
343 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 345 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
344 346
345 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 347 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
346 }; 348 };
347 349
348 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 350 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698