| 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 "apps/app_load_service.h" | 7 #include "apps/app_load_service.h" |
| 8 #include "apps/saved_files_service.h" | 8 #include "apps/saved_files_service.h" |
| 9 #include "base/base64.h" | 9 #include "base/base64.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 #include "extensions/common/manifest.h" | 62 #include "extensions/common/manifest.h" |
| 63 #include "extensions/common/manifest_handlers/background_info.h" | 63 #include "extensions/common/manifest_handlers/background_info.h" |
| 64 #include "extensions/common/manifest_handlers/icons_handler.h" | 64 #include "extensions/common/manifest_handlers/icons_handler.h" |
| 65 #include "extensions/common/manifest_handlers/incognito_info.h" | 65 #include "extensions/common/manifest_handlers/incognito_info.h" |
| 66 #include "extensions/common/manifest_handlers/offline_enabled_info.h" | 66 #include "extensions/common/manifest_handlers/offline_enabled_info.h" |
| 67 #include "extensions/common/manifest_handlers/options_page_info.h" | 67 #include "extensions/common/manifest_handlers/options_page_info.h" |
| 68 #include "extensions/common/permissions/permissions_data.h" | 68 #include "extensions/common/permissions/permissions_data.h" |
| 69 #include "extensions/common/switches.h" | 69 #include "extensions/common/switches.h" |
| 70 #include "extensions/grit/extensions_browser_resources.h" | 70 #include "extensions/grit/extensions_browser_resources.h" |
| 71 #include "net/base/net_util.h" | 71 #include "net/base/net_util.h" |
| 72 #include "storage/browser/fileapi/external_mount_points.h" |
| 73 #include "storage/browser/fileapi/file_system_context.h" |
| 74 #include "storage/browser/fileapi/file_system_operation.h" |
| 75 #include "storage/browser/fileapi/file_system_operation_runner.h" |
| 76 #include "storage/browser/fileapi/isolated_context.h" |
| 72 #include "storage/common/blob/shareable_file_reference.h" | 77 #include "storage/common/blob/shareable_file_reference.h" |
| 73 #include "ui/base/l10n/l10n_util.h" | 78 #include "ui/base/l10n/l10n_util.h" |
| 74 #include "ui/base/resource/resource_bundle.h" | 79 #include "ui/base/resource/resource_bundle.h" |
| 75 #include "ui/base/webui/web_ui_util.h" | 80 #include "ui/base/webui/web_ui_util.h" |
| 76 #include "webkit/browser/fileapi/external_mount_points.h" | |
| 77 #include "webkit/browser/fileapi/file_system_context.h" | |
| 78 #include "webkit/browser/fileapi/file_system_operation.h" | |
| 79 #include "webkit/browser/fileapi/file_system_operation_runner.h" | |
| 80 #include "webkit/browser/fileapi/isolated_context.h" | |
| 81 | 81 |
| 82 using content::RenderViewHost; | 82 using content::RenderViewHost; |
| 83 | 83 |
| 84 namespace extensions { | 84 namespace extensions { |
| 85 | 85 |
| 86 namespace developer_private = api::developer_private; | 86 namespace developer_private = api::developer_private; |
| 87 | 87 |
| 88 namespace { | 88 namespace { |
| 89 | 89 |
| 90 const char kUnpackedAppsFolder[] = "apps_target"; | 90 const char kUnpackedAppsFolder[] = "apps_target"; |
| (...skipping 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1395 } | 1395 } |
| 1396 | 1396 |
| 1397 error_ui_util::HandleOpenDevTools(dict); | 1397 error_ui_util::HandleOpenDevTools(dict); |
| 1398 | 1398 |
| 1399 return true; | 1399 return true; |
| 1400 } | 1400 } |
| 1401 | 1401 |
| 1402 } // namespace api | 1402 } // namespace api |
| 1403 | 1403 |
| 1404 } // namespace extensions | 1404 } // namespace extensions |
| OLD | NEW |