| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/manifest_url_handlers.h" | 68 #include "extensions/common/manifest_url_handlers.h" |
| 69 #include "extensions/common/permissions/permissions_data.h" | 69 #include "extensions/common/permissions/permissions_data.h" |
| 70 #include "extensions/common/switches.h" | 70 #include "extensions/common/switches.h" |
| 71 #include "extensions/grit/extensions_browser_resources.h" | 71 #include "extensions/grit/extensions_browser_resources.h" |
| 72 #include "net/base/net_util.h" | 72 #include "net/base/net_util.h" |
| 73 #include "storage/browser/blob/shareable_file_reference.h" |
| 73 #include "storage/browser/fileapi/external_mount_points.h" | 74 #include "storage/browser/fileapi/external_mount_points.h" |
| 74 #include "storage/browser/fileapi/file_system_context.h" | 75 #include "storage/browser/fileapi/file_system_context.h" |
| 75 #include "storage/browser/fileapi/file_system_operation.h" | 76 #include "storage/browser/fileapi/file_system_operation.h" |
| 76 #include "storage/browser/fileapi/file_system_operation_runner.h" | 77 #include "storage/browser/fileapi/file_system_operation_runner.h" |
| 77 #include "storage/browser/fileapi/isolated_context.h" | 78 #include "storage/browser/fileapi/isolated_context.h" |
| 78 #include "storage/common/blob/shareable_file_reference.h" | |
| 79 #include "ui/base/l10n/l10n_util.h" | 79 #include "ui/base/l10n/l10n_util.h" |
| 80 #include "ui/base/resource/resource_bundle.h" | 80 #include "ui/base/resource/resource_bundle.h" |
| 81 #include "ui/base/webui/web_ui_util.h" | 81 #include "ui/base/webui/web_ui_util.h" |
| 82 | 82 |
| 83 using content::RenderViewHost; | 83 using content::RenderViewHost; |
| 84 | 84 |
| 85 namespace extensions { | 85 namespace extensions { |
| 86 | 86 |
| 87 namespace developer_private = api::developer_private; | 87 namespace developer_private = api::developer_private; |
| 88 | 88 |
| (...skipping 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1403 } | 1403 } |
| 1404 | 1404 |
| 1405 error_ui_util::HandleOpenDevTools(dict); | 1405 error_ui_util::HandleOpenDevTools(dict); |
| 1406 | 1406 |
| 1407 return true; | 1407 return true; |
| 1408 } | 1408 } |
| 1409 | 1409 |
| 1410 } // namespace api | 1410 } // namespace api |
| 1411 | 1411 |
| 1412 } // namespace extensions | 1412 } // namespace extensions |
| OLD | NEW |