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

Side by Side Diff: content/public/browser/ax_event_notification_details.cc

Issue 1232643003: Give automation API access to browser plugin objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error Created 5 years, 5 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
« no previous file with comments | « content/public/browser/ax_event_notification_details.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "content/public/browser/ax_event_notification_details.h" 5 #include "content/public/browser/ax_event_notification_details.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 AXEventNotificationDetails::AXEventNotificationDetails( 9 AXEventNotificationDetails::AXEventNotificationDetails(
10 int node_id_to_clear, 10 int node_id_to_clear,
11 const std::vector<ui::AXNodeData>& nodes, 11 const std::vector<ui::AXNodeData>& nodes,
12 ui::AXEvent event_type, 12 ui::AXEvent event_type,
13 int id, 13 int id,
14 std::map<int32, int> node_to_browser_plugin_instance_id_map,
14 int process_id, 15 int process_id,
15 int routing_id) 16 int routing_id)
16 : node_id_to_clear(node_id_to_clear), 17 : node_id_to_clear(node_id_to_clear),
17 nodes(nodes), 18 nodes(nodes),
18 event_type(event_type), 19 event_type(event_type),
19 id(id), 20 id(id),
21 node_to_browser_plugin_instance_id_map(
22 node_to_browser_plugin_instance_id_map),
20 process_id(process_id), 23 process_id(process_id),
21 routing_id(routing_id) { 24 routing_id(routing_id) {
22 } 25 }
23 26
24 AXEventNotificationDetails::~AXEventNotificationDetails() {} 27 AXEventNotificationDetails::~AXEventNotificationDetails() {}
25 28
26 } // namespace content 29 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/ax_event_notification_details.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698