Added llvm into exceptions as we can't add README.chromium into 3rd party repository
[chromium-blink-merge.git] / ash / wm / overview / window_selector_delegate.h
blobaf3e646b19437609d299b9b7425e0b0de5286888
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef ASH_WM_OVERVIEW_WINDOW_SELECTOR_DELEGATE_H_
6 #define ASH_WM_OVERVIEW_WINDOW_SELECTOR_DELEGATE_H_
8 #include "ash/ash_export.h"
9 #include "base/compiler_specific.h"
11 namespace aura {
12 class Window;
15 namespace ash {
17 // Implement this class to handle the selection event from WindowSelector.
18 class ASH_EXPORT WindowSelectorDelegate {
19 public:
20 // Invoked if selection is ended.
21 virtual void OnSelectionEnded() = 0;
23 protected:
24 virtual ~WindowSelectorDelegate() {}
27 } // namespace ash
29 #endif // ASH_WM_OVERVIEW_WINDOW_SELECTOR_DELEGATE_H_