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 #include "extensions/browser/api/runtime/runtime_api.h" | 5 #include "extensions/browser/api/runtime/runtime_api.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "extensions/browser/extension_util.h" | 26 #include "extensions/browser/extension_util.h" |
27 #include "extensions/browser/extensions_browser_client.h" | 27 #include "extensions/browser/extensions_browser_client.h" |
28 #include "extensions/browser/lazy_background_task_queue.h" | 28 #include "extensions/browser/lazy_background_task_queue.h" |
29 #include "extensions/browser/notification_types.h" | 29 #include "extensions/browser/notification_types.h" |
30 #include "extensions/browser/process_manager.h" | 30 #include "extensions/browser/process_manager.h" |
31 #include "extensions/common/api/runtime.h" | 31 #include "extensions/common/api/runtime.h" |
32 #include "extensions/common/error_utils.h" | 32 #include "extensions/common/error_utils.h" |
33 #include "extensions/common/extension.h" | 33 #include "extensions/common/extension.h" |
34 #include "extensions/common/manifest_handlers/background_info.h" | 34 #include "extensions/common/manifest_handlers/background_info.h" |
35 #include "extensions/common/manifest_handlers/shared_module_info.h" | 35 #include "extensions/common/manifest_handlers/shared_module_info.h" |
| 36 #include "storage/browser/fileapi/isolated_context.h" |
36 #include "url/gurl.h" | 37 #include "url/gurl.h" |
37 #include "webkit/browser/fileapi/isolated_context.h" | |
38 | 38 |
39 using content::BrowserContext; | 39 using content::BrowserContext; |
40 | 40 |
41 namespace extensions { | 41 namespace extensions { |
42 | 42 |
43 namespace runtime = core_api::runtime; | 43 namespace runtime = core_api::runtime; |
44 | 44 |
45 namespace { | 45 namespace { |
46 | 46 |
47 const char kNoBackgroundPageError[] = "You do not have a background page."; | 47 const char kNoBackgroundPageError[] = "You do not have a background page."; |
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 content::ChildProcessSecurityPolicy* policy = | 511 content::ChildProcessSecurityPolicy* policy = |
512 content::ChildProcessSecurityPolicy::GetInstance(); | 512 content::ChildProcessSecurityPolicy::GetInstance(); |
513 policy->GrantReadFileSystem(renderer_id, filesystem_id); | 513 policy->GrantReadFileSystem(renderer_id, filesystem_id); |
514 base::DictionaryValue* dict = new base::DictionaryValue(); | 514 base::DictionaryValue* dict = new base::DictionaryValue(); |
515 dict->SetString("fileSystemId", filesystem_id); | 515 dict->SetString("fileSystemId", filesystem_id); |
516 dict->SetString("baseName", relative_path); | 516 dict->SetString("baseName", relative_path); |
517 return RespondNow(OneArgument(dict)); | 517 return RespondNow(OneArgument(dict)); |
518 } | 518 } |
519 | 519 |
520 } // namespace extensions | 520 } // namespace extensions |
OLD | NEW |