// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/aura/scoped_window_targeter.h" #include <utility> #include "ui/aura/window.h" #include "ui/aura/window_targeter.h" namespace aura { ScopedWindowTargeter::ScopedWindowTargeter( Window* window, std::unique_ptr<WindowTargeter> new_targeter) : … { … } ScopedWindowTargeter::~ScopedWindowTargeter() { … } void ScopedWindowTargeter::OnWindowDestroyed(Window* window) { … } } // namespace aura