DevTools: kill codeschool extension from whitelist
[chromium-blink-merge.git] / components / window_manager / capture_controller_observer.h
blob607262256400dfe028101dead35f781fd8387f72
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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_WINDOW_MANAGER_CAPTURE_CONTROLLER_OBSERVER_H_
6 #define COMPONENTS_WINDOW_MANAGER_CAPTURE_CONTROLLER_OBSERVER_H_
8 namespace mojo {
9 class View;
12 namespace window_manager {
14 class CaptureControllerObserver {
15 public:
16 virtual void OnCaptureChanged(mojo::View* gained_capture) = 0;
18 protected:
19 virtual ~CaptureControllerObserver() {}
22 } // namespace window_manager
24 #endif // COMPONENTS_WINDOW_MANAGER_CAPTURE_CONTROLLER_OBSERVER_H_