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

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

Issue 203753002: Implement actions for Automation API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove repricated API. Created 6 years, 8 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 | Annotate | Revision Log
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 const std::vector<ui::AXNodeData>& nodes, 10 const std::vector<ui::AXNodeData>& nodes,
11 ui::AXEvent event_type, 11 ui::AXEvent event_type,
12 int id, 12 int id,
13 int process_id,
13 int routing_id) 14 int routing_id)
14 : nodes(nodes), event_type(event_type), id(id), routing_id(routing_id) {} 15 : nodes(nodes),
16 event_type(event_type),
17 id(id),
18 process_id(process_id),
19 routing_id(routing_id) {}
15 20
16 AXEventNotificationDetails::~AXEventNotificationDetails() {} 21 AXEventNotificationDetails::~AXEventNotificationDetails() {}
17 22
18 } // namespace content 23 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698