| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/common/extensions/manifest_handlers/automation.h" | 5 #include "chrome/common/extensions/manifest_handlers/automation.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "chrome/common/extensions/api/manifest_types.h" | 12 #include "chrome/common/extensions/api/manifest_types.h" |
| 13 #include "chrome/grit/generated_resources.h" | |
| 14 #include "extensions/common/error_utils.h" | 13 #include "extensions/common/error_utils.h" |
| 15 #include "extensions/common/extensions_client.h" | 14 #include "extensions/common/extensions_client.h" |
| 16 #include "extensions/common/manifest_constants.h" | 15 #include "extensions/common/manifest_constants.h" |
| 17 #include "extensions/common/permissions/api_permission_set.h" | 16 #include "extensions/common/permissions/api_permission_set.h" |
| 18 #include "extensions/common/permissions/manifest_permission.h" | 17 #include "extensions/common/permissions/manifest_permission.h" |
| 19 #include "extensions/common/permissions/permission_message_util.h" | 18 #include "extensions/common/permissions/permission_message_util.h" |
| 20 #include "extensions/common/permissions/permissions_data.h" | 19 #include "extensions/common/permissions/permissions_data.h" |
| 21 #include "extensions/common/url_pattern.h" | 20 #include "extensions/common/url_pattern.h" |
| 22 #include "ipc/ipc_message.h" | 21 #include "ipc/ipc_message.h" |
| 23 #include "ipc/ipc_message_utils.h" | 22 #include "ipc/ipc_message_utils.h" |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 305 |
| 307 AutomationInfo::AutomationInfo(bool desktop, | 306 AutomationInfo::AutomationInfo(bool desktop, |
| 308 const URLPatternSet& matches, | 307 const URLPatternSet& matches, |
| 309 bool interact) | 308 bool interact) |
| 310 : desktop(desktop), matches(matches), interact(interact) {} | 309 : desktop(desktop), matches(matches), interact(interact) {} |
| 311 | 310 |
| 312 AutomationInfo::~AutomationInfo() { | 311 AutomationInfo::~AutomationInfo() { |
| 313 } | 312 } |
| 314 | 313 |
| 315 } // namespace extensions | 314 } // namespace extensions |
| OLD | NEW |