| OLD | NEW |
| 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 #include "chrome/browser/extensions/api/developer_private/developer_private_api.
h" | 5 #include "chrome/browser/extensions/api/developer_private/developer_private_api.
h" |
| 6 | 6 |
| 7 #include "base/base64.h" | 7 #include "base/base64.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/i18n/file_util_icu.h" | 10 #include "base/i18n/file_util_icu.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "content/public/browser/storage_partition.h" | 43 #include "content/public/browser/storage_partition.h" |
| 44 #include "content/public/browser/web_contents.h" | 44 #include "content/public/browser/web_contents.h" |
| 45 #include "extensions/browser/view_type_utils.h" | 45 #include "extensions/browser/view_type_utils.h" |
| 46 #include "extensions/common/constants.h" | 46 #include "extensions/common/constants.h" |
| 47 #include "extensions/common/extension_resource.h" | 47 #include "extensions/common/extension_resource.h" |
| 48 #include "grit/chromium_strings.h" | 48 #include "grit/chromium_strings.h" |
| 49 #include "grit/generated_resources.h" | 49 #include "grit/generated_resources.h" |
| 50 #include "net/base/net_util.h" | 50 #include "net/base/net_util.h" |
| 51 #include "ui/base/l10n/l10n_util.h" | 51 #include "ui/base/l10n/l10n_util.h" |
| 52 #include "webkit/blob/shareable_file_reference.h" | 52 #include "webkit/blob/shareable_file_reference.h" |
| 53 #include "webkit/browser/fileapi/local_file_system_operation.h" |
| 53 #include "webkit/fileapi/file_system_context.h" | 54 #include "webkit/fileapi/file_system_context.h" |
| 54 #include "webkit/fileapi/file_system_operation.h" | 55 #include "webkit/fileapi/file_system_operation.h" |
| 55 #include "webkit/fileapi/local_file_system_operation.h" | |
| 56 #include "webkit/fileapi/syncable/syncable_file_system_util.h" | 56 #include "webkit/fileapi/syncable/syncable_file_system_util.h" |
| 57 | 57 |
| 58 using content::RenderViewHost; | 58 using content::RenderViewHost; |
| 59 | 59 |
| 60 namespace extensions { | 60 namespace extensions { |
| 61 | 61 |
| 62 namespace { | 62 namespace { |
| 63 | 63 |
| 64 const base::FilePath::CharType kUnpackedAppsFolder[] | 64 const base::FilePath::CharType kUnpackedAppsFolder[] |
| 65 = FILE_PATH_LITERAL("apps_target"); | 65 = FILE_PATH_LITERAL("apps_target"); |
| (...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 | 1297 |
| 1298 #undef SET_STRING | 1298 #undef SET_STRING |
| 1299 return true; | 1299 return true; |
| 1300 } | 1300 } |
| 1301 | 1301 |
| 1302 DeveloperPrivateGetStringsFunction::~DeveloperPrivateGetStringsFunction() {} | 1302 DeveloperPrivateGetStringsFunction::~DeveloperPrivateGetStringsFunction() {} |
| 1303 | 1303 |
| 1304 } // namespace api | 1304 } // namespace api |
| 1305 | 1305 |
| 1306 } // namespace extensions | 1306 } // namespace extensions |
| OLD | NEW |