File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 283
283
'src/shell_content_client.h' ,
284
284
'src/shell_main_delegate.cc' ,
285
285
'src/shell_main_delegate.h' ,
286
+ 'src/shell_quota_permission_context.cc' ,
287
+ 'src/shell_quota_permission_context.h' ,
286
288
],
287
289
'msvs_settings' : {
288
290
'VCLinkerTool' : {
Original file line number Diff line number Diff line change 45
45
#include " content/nw/src/common/shell_switches.h"
46
46
#include " content/nw/src/browser/printing/print_job_manager.h"
47
47
#include " content/nw/src/browser/shell_devtools_delegate.h"
48
+ #include " content/nw/src/shell_quota_permission_context.h"
48
49
#include " content/nw/src/browser/shell_resource_dispatcher_host_delegate.h"
49
50
#include " content/nw/src/media/media_internals.h"
50
51
#include " content/nw/src/nw_package.h"
@@ -409,5 +410,9 @@ void ShellContentBrowserClient::GetAdditionalMappedFilesForChildProcess(
409
410
}
410
411
#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
411
412
413
+ QuotaPermissionContext*
414
+ ShellContentBrowserClient::CreateQuotaPermissionContext () {
415
+ return new ShellQuotaPermissionContext ();
416
+ }
412
417
413
418
} // namespace content
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ class ShellContentBrowserClient : public ContentBrowserClient {
89
89
int child_process_id,
90
90
std::vector<content::FileDescriptorInfo>* mappings) OVERRIDE;
91
91
#endif
92
+ virtual QuotaPermissionContext* CreateQuotaPermissionContext () OVERRIDE;
92
93
93
94
private:
94
95
ShellBrowserContext* ShellBrowserContextForBrowserContext (
You can’t perform that action at this time.
0 commit comments