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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/file_system_context.h" | 53 #include "webkit/browser/fileapi/file_system_context.h" |
54 #include "webkit/browser/fileapi/file_system_operation.h" | 54 #include "webkit/browser/fileapi/file_system_operation.h" |
55 #include "webkit/browser/fileapi/local_file_system_operation.h" | 55 #include "webkit/browser/fileapi/local_file_system_operation.h" |
56 #include "webkit/fileapi/syncable/syncable_file_system_util.h" | 56 #include "webkit/browser/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"); |
66 | 66 |
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1170 | 1170 |
1171 #undef SET_STRING | 1171 #undef SET_STRING |
1172 return true; | 1172 return true; |
1173 } | 1173 } |
1174 | 1174 |
1175 DeveloperPrivateGetStringsFunction::~DeveloperPrivateGetStringsFunction() {} | 1175 DeveloperPrivateGetStringsFunction::~DeveloperPrivateGetStringsFunction() {} |
1176 | 1176 |
1177 } // namespace api | 1177 } // namespace api |
1178 | 1178 |
1179 } // namespace extensions | 1179 } // namespace extensions |
OLD | NEW |