Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1978)

Side by Side Diff: chrome/common/extensions/chrome_extension_messages.h

Issue 2000403003: [forbots] IWYU for ax_enums.h Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // Chrome-specific IPC messages for extensions. 5 // Chrome-specific IPC messages for extensions.
6 // Extension-related messages that aren't specific to Chrome live in 6 // Extension-related messages that aren't specific to Chrome live in
7 // extensions/common/extension_messages.h. 7 // extensions/common/extension_messages.h.
8 // 8 //
9 // Multiply-included message file, hence no include guard. 9 // Multiply-included message file, hence no include guard.
10 10
11 #include <stdint.h> 11 #include <stdint.h>
12 12
13 #include <string> 13 #include <string>
14 14
15 #include "base/strings/string16.h" 15 #include "base/strings/string16.h"
16 #include "base/values.h" 16 #include "base/values.h"
17 #include "chrome/common/extensions/api/automation_internal.h" 17 #include "chrome/common/extensions/api/automation_internal.h"
18 #include "chrome/common/extensions/api/webstore/webstore_api_constants.h" 18 #include "chrome/common/extensions/api/webstore/webstore_api_constants.h"
19 #include "chrome/common/extensions/webstore_install_result.h" 19 #include "chrome/common/extensions/webstore_install_result.h"
20 #include "extensions/common/stack_frame.h" 20 #include "extensions/common/stack_frame.h"
21 #include "ipc/ipc_message_macros.h" 21 #include "ipc/ipc_message_macros.h"
22 #include "ui/accessibility/ax_enums.h"
23 #include "ui/accessibility/ax_node_data.h" 22 #include "ui/accessibility/ax_node_data.h"
24 #include "ui/accessibility/ax_tree_data.h" 23 #include "ui/accessibility/ax_tree_data.h"
25 #include "ui/accessibility/ax_tree_update.h" 24 #include "ui/accessibility/ax_tree_update.h"
26 #include "ui/gfx/transform.h" 25 #include "ui/gfx/transform.h"
27 #include "url/gurl.h" 26 #include "url/gurl.h"
28 27
29 #define IPC_MESSAGE_START ChromeExtensionMsgStart 28 #define IPC_MESSAGE_START ChromeExtensionMsgStart
30 29
31 IPC_ENUM_TRAITS_MAX_VALUE(extensions::api::webstore::InstallStage, 30 IPC_ENUM_TRAITS_MAX_VALUE(extensions::api::webstore::InstallStage,
32 extensions::api::webstore::INSTALL_STAGE_INSTALLING) 31 extensions::api::webstore::INSTALL_STAGE_INSTALLING)
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 // Messages sent from the renderer to the browser. 123 // Messages sent from the renderer to the browser.
125 124
126 125
127 // Sent by the renderer to implement chrome.webstore.install(). 126 // Sent by the renderer to implement chrome.webstore.install().
128 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall, 127 IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall,
129 int32_t /* install id */, 128 int32_t /* install id */,
130 int32_t /* return route id */, 129 int32_t /* return route id */,
131 std::string /* Web Store item ID */, 130 std::string /* Web Store item ID */,
132 GURL /* requestor URL */, 131 GURL /* requestor URL */,
133 int /* listeners_mask */) 132 int /* listeners_mask */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698