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

Side by Side Diff: content/shell/shell_content_browser_client.h

Issue 12965016: [content shell] add QuotaPermissionContext implementation that always grants quota (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/shell_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 CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 30 matching lines...) Expand all
41 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host, 41 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host,
42 const GURL& url, 42 const GURL& url,
43 webkit_glue::WebPreferences* prefs) OVERRIDE; 43 webkit_glue::WebPreferences* prefs) OVERRIDE;
44 virtual void ResourceDispatcherHostCreated() OVERRIDE; 44 virtual void ResourceDispatcherHostCreated() OVERRIDE;
45 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; 45 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
46 virtual std::string GetDefaultDownloadName() OVERRIDE; 46 virtual std::string GetDefaultDownloadName() OVERRIDE;
47 virtual bool SupportsBrowserPlugin(content::BrowserContext* browser_context, 47 virtual bool SupportsBrowserPlugin(content::BrowserContext* browser_context,
48 const GURL& url) OVERRIDE; 48 const GURL& url) OVERRIDE;
49 virtual WebContentsViewDelegate* GetWebContentsViewDelegate( 49 virtual WebContentsViewDelegate* GetWebContentsViewDelegate(
50 WebContents* web_contents) OVERRIDE; 50 WebContents* web_contents) OVERRIDE;
51 virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE;
51 52
52 #if defined(OS_ANDROID) 53 #if defined(OS_ANDROID)
53 virtual void GetAdditionalMappedFilesForChildProcess( 54 virtual void GetAdditionalMappedFilesForChildProcess(
54 const CommandLine& command_line, 55 const CommandLine& command_line,
55 int child_process_id, 56 int child_process_id,
56 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE; 57 std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE;
57 #endif 58 #endif
58 59
59 ShellBrowserContext* browser_context(); 60 ShellBrowserContext* browser_context();
60 ShellBrowserContext* off_the_record_browser_context(); 61 ShellBrowserContext* off_the_record_browser_context();
(...skipping 14 matching lines...) Expand all
75 base::FilePath webkit_source_dir_; 76 base::FilePath webkit_source_dir_;
76 77
77 base::PlatformFile hyphen_dictionary_file_; 78 base::PlatformFile hyphen_dictionary_file_;
78 79
79 ShellBrowserMainParts* shell_browser_main_parts_; 80 ShellBrowserMainParts* shell_browser_main_parts_;
80 }; 81 };
81 82
82 } // namespace content 83 } // namespace content
83 84
84 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 85 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698