root/content/public/browser/ax_event_notification_details.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. routing_id

// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/public/browser/ax_event_notification_details.h"

namespace content {

AXEventNotificationDetails::AXEventNotificationDetails(
    const std::vector<ui::AXNodeData>& nodes,
    ui::AXEvent event_type,
    int id,
    int process_id,
    int routing_id)
    : nodes(nodes),
      event_type(event_type),
      id(id),
      process_id(process_id),
      routing_id(routing_id) {}

AXEventNotificationDetails::~AXEventNotificationDetails() {}

}  // namespace content

/* [<][>][^][v][top][bottom][index][help] */