| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "chrome/common/extensions/api/managed_mode_private/managed_mode_handler
.h" | 5 #include "chrome/common/extensions/api/managed_mode_private/managed_mode_handler
.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 extension->GetResource(info->site_list) : | 37 extension->GetResource(info->site_list) : |
| 38 ExtensionResource(); | 38 ExtensionResource(); |
| 39 } | 39 } |
| 40 | 40 |
| 41 ManagedModeHandler::ManagedModeHandler() { | 41 ManagedModeHandler::ManagedModeHandler() { |
| 42 } | 42 } |
| 43 | 43 |
| 44 ManagedModeHandler::~ManagedModeHandler() { | 44 ManagedModeHandler::~ManagedModeHandler() { |
| 45 } | 45 } |
| 46 | 46 |
| 47 bool ManagedModeHandler::Parse(Extension* extension, string16* error) { | 47 bool ManagedModeHandler::Parse(Extension* extension, base::string16* error) { |
| 48 if (!extension->manifest()->HasKey(keys::kContentPack)) | 48 if (!extension->manifest()->HasKey(keys::kContentPack)) |
| 49 return true; | 49 return true; |
| 50 | 50 |
| 51 scoped_ptr<ManagedModeInfo> info(new ManagedModeInfo); | 51 scoped_ptr<ManagedModeInfo> info(new ManagedModeInfo); |
| 52 const base::DictionaryValue* content_pack_value = NULL; | 52 const base::DictionaryValue* content_pack_value = NULL; |
| 53 if (!extension->manifest()->GetDictionary(keys::kContentPack, | 53 if (!extension->manifest()->GetDictionary(keys::kContentPack, |
| 54 &content_pack_value)) { | 54 &content_pack_value)) { |
| 55 *error = ASCIIToUTF16(manifest_errors::kInvalidContentPack); | 55 *error = ASCIIToUTF16(manifest_errors::kInvalidContentPack); |
| 56 return false; | 56 return false; |
| 57 } | 57 } |
| 58 | 58 |
| 59 if (!LoadSites(info.get(), content_pack_value, error) || | 59 if (!LoadSites(info.get(), content_pack_value, error) || |
| 60 !LoadConfigurations(info.get(), content_pack_value, error)) { | 60 !LoadConfigurations(info.get(), content_pack_value, error)) { |
| 61 return false; | 61 return false; |
| 62 } | 62 } |
| 63 | 63 |
| 64 extension->SetManifestData(keys::kContentPack, info.release()); | 64 extension->SetManifestData(keys::kContentPack, info.release()); |
| 65 return true; | 65 return true; |
| 66 } | 66 } |
| 67 | 67 |
| 68 const std::vector<std::string> ManagedModeHandler::Keys() const { | 68 const std::vector<std::string> ManagedModeHandler::Keys() const { |
| 69 return SingleKey(keys::kContentPack); | 69 return SingleKey(keys::kContentPack); |
| 70 } | 70 } |
| 71 | 71 |
| 72 bool ManagedModeHandler::LoadSites( | 72 bool ManagedModeHandler::LoadSites( |
| 73 ManagedModeInfo* info, | 73 ManagedModeInfo* info, |
| 74 const base::DictionaryValue* content_pack_value, | 74 const base::DictionaryValue* content_pack_value, |
| 75 string16* error) { | 75 base::string16* error) { |
| 76 if (!content_pack_value->HasKey(keys::kContentPackSites)) | 76 if (!content_pack_value->HasKey(keys::kContentPackSites)) |
| 77 return true; | 77 return true; |
| 78 | 78 |
| 79 base::FilePath::StringType site_list_string; | 79 base::FilePath::StringType site_list_string; |
| 80 if (!content_pack_value->GetString(keys::kContentPackSites, | 80 if (!content_pack_value->GetString(keys::kContentPackSites, |
| 81 &site_list_string)) { | 81 &site_list_string)) { |
| 82 *error = ASCIIToUTF16(manifest_errors::kInvalidContentPackSites); | 82 *error = ASCIIToUTF16(manifest_errors::kInvalidContentPackSites); |
| 83 return false; | 83 return false; |
| 84 } | 84 } |
| 85 | 85 |
| 86 info->site_list = base::FilePath(site_list_string); | 86 info->site_list = base::FilePath(site_list_string); |
| 87 | 87 |
| 88 return true; | 88 return true; |
| 89 } | 89 } |
| 90 | 90 |
| 91 bool ManagedModeHandler::LoadConfigurations( | 91 bool ManagedModeHandler::LoadConfigurations( |
| 92 ManagedModeInfo* info, | 92 ManagedModeInfo* info, |
| 93 const base::DictionaryValue* content_pack_value, | 93 const base::DictionaryValue* content_pack_value, |
| 94 string16* error) { | 94 base::string16* error) { |
| 95 NOTIMPLEMENTED(); | 95 NOTIMPLEMENTED(); |
| 96 return true; | 96 return true; |
| 97 } | 97 } |
| 98 | 98 |
| 99 } // namespace extensions | 99 } // namespace extensions |
| OLD | NEW |