root/ui/events/test/test_event_processor.cc

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

DEFINITIONS

This source file includes following definitions.
  1. SetRoot
  2. CanDispatchToTarget
  3. GetRootTarget
  4. OnEventFromSource

// Copyright 2013 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 "ui/events/test/test_event_processor.h"

#include "ui/events/event_target.h"

namespace ui {
namespace test {

TestEventProcessor::TestEventProcessor() {}
TestEventProcessor::~TestEventProcessor() {}

void TestEventProcessor::SetRoot(scoped_ptr<EventTarget> root) {
  root_ = root.Pass();
}

bool TestEventProcessor::CanDispatchToTarget(EventTarget* target) {
  return true;
}

EventTarget* TestEventProcessor::GetRootTarget() {
  return root_.get();
}

EventDispatchDetails TestEventProcessor::OnEventFromSource(Event* event) {
  return EventProcessor::OnEventFromSource(event);
}

}  // namespace test
}  // namespace ui

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