| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 #include "extensions/browser/notification_types.h" | 71 #include "extensions/browser/notification_types.h" |
| 72 #include "extensions/browser/warning_service.h" | 72 #include "extensions/browser/warning_service.h" |
| 73 #include "extensions/common/constants.h" | 73 #include "extensions/common/constants.h" |
| 74 #include "extensions/common/extension_set.h" | 74 #include "extensions/common/extension_set.h" |
| 75 #include "extensions/common/feature_switch.h" | 75 #include "extensions/common/feature_switch.h" |
| 76 #include "extensions/common/install_warning.h" | 76 #include "extensions/common/install_warning.h" |
| 77 #include "extensions/common/manifest.h" | 77 #include "extensions/common/manifest.h" |
| 78 #include "extensions/common/manifest_handlers/options_page_info.h" | 78 #include "extensions/common/manifest_handlers/options_page_info.h" |
| 79 #include "extensions/common/manifest_url_handlers.h" | 79 #include "extensions/common/manifest_url_handlers.h" |
| 80 #include "extensions/common/permissions/permissions_data.h" | 80 #include "extensions/common/permissions/permissions_data.h" |
| 81 #include "extensions/grit/extensions_browser_resources.h" | |
| 82 #include "storage/browser/fileapi/external_mount_points.h" | 81 #include "storage/browser/fileapi/external_mount_points.h" |
| 83 #include "storage/browser/fileapi/file_system_context.h" | 82 #include "storage/browser/fileapi/file_system_context.h" |
| 84 #include "storage/browser/fileapi/file_system_operation.h" | 83 #include "storage/browser/fileapi/file_system_operation.h" |
| 85 #include "storage/browser/fileapi/file_system_operation_runner.h" | 84 #include "storage/browser/fileapi/file_system_operation_runner.h" |
| 86 #include "storage/browser/fileapi/isolated_context.h" | 85 #include "storage/browser/fileapi/isolated_context.h" |
| 87 #include "ui/base/l10n/l10n_util.h" | 86 #include "ui/base/l10n/l10n_util.h" |
| 88 | 87 |
| 89 namespace extensions { | 88 namespace extensions { |
| 90 | 89 |
| 91 namespace developer = api::developer_private; | 90 namespace developer = api::developer_private; |
| (...skipping 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1576 update.extension_id, update.command_name, *update.keybinding); | 1575 update.extension_id, update.command_name, *update.keybinding); |
| 1577 } | 1576 } |
| 1578 | 1577 |
| 1579 return RespondNow(NoArguments()); | 1578 return RespondNow(NoArguments()); |
| 1580 } | 1579 } |
| 1581 | 1580 |
| 1582 | 1581 |
| 1583 } // namespace api | 1582 } // namespace api |
| 1584 | 1583 |
| 1585 } // namespace extensions | 1584 } // namespace extensions |
| OLD | NEW |