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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 ->Get(browser_context()) | 491 ->Get(browser_context()) |
492 ->GetPlatformInfo(&info)) { | 492 ->GetPlatformInfo(&info)) { |
493 return RespondNow(Error(kPlatformInfoUnavailable)); | 493 return RespondNow(Error(kPlatformInfoUnavailable)); |
494 } | 494 } |
495 return RespondNow( | 495 return RespondNow( |
496 ArgumentList(runtime::GetPlatformInfo::Results::Create(info))); | 496 ArgumentList(runtime::GetPlatformInfo::Results::Create(info))); |
497 } | 497 } |
498 | 498 |
499 ExtensionFunction::ResponseAction | 499 ExtensionFunction::ResponseAction |
500 RuntimeGetPackageDirectoryEntryFunction::Run() { | 500 RuntimeGetPackageDirectoryEntryFunction::Run() { |
501 fileapi::IsolatedContext* isolated_context = | 501 storage::IsolatedContext* isolated_context = |
502 fileapi::IsolatedContext::GetInstance(); | 502 storage::IsolatedContext::GetInstance(); |
503 DCHECK(isolated_context); | 503 DCHECK(isolated_context); |
504 | 504 |
505 std::string relative_path = kPackageDirectoryPath; | 505 std::string relative_path = kPackageDirectoryPath; |
506 base::FilePath path = extension_->path(); | 506 base::FilePath path = extension_->path(); |
507 std::string filesystem_id = isolated_context->RegisterFileSystemForPath( | 507 std::string filesystem_id = isolated_context->RegisterFileSystemForPath( |
508 fileapi::kFileSystemTypeNativeLocal, std::string(), path, &relative_path); | 508 storage::kFileSystemTypeNativeLocal, std::string(), path, &relative_path); |
509 | 509 |
510 int renderer_id = render_view_host_->GetProcess()->GetID(); | 510 int renderer_id = render_view_host_->GetProcess()->GetID(); |
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 |