Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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. | |
| 4 | |
| 5 #ifndef HEADLESS_LIB_BROWSER_HEADLESS_PLATFORM_EVENT_SOURCE_H_ | |
| 6 #define HEADLESS_LIB_BROWSER_HEADLESS_PLATFORM_EVENT_SOURCE_H_ | |
| 7 #include "ui/events/platform/platform_event_source.h" | |
| 8 | |
| 9 namespace headless { | |
| 10 | |
| 11 // A stub event source whose main purpose is to prevent the default platform | |
| 12 // event source from getting created. | |
| 13 class HeadlessPlatformEventSource : public ui::PlatformEventSource { | |
| 14 public: | |
| 15 HeadlessPlatformEventSource(); | |
| 16 ~HeadlessPlatformEventSource() override; | |
| 17 }; | |
|
sky
2016/12/08 16:16:35
private: DISALLOW...
Sami
2016/12/08 16:58:35
Done.
| |
| 18 | |
| 19 } // namespace headless | |
| 20 | |
| 21 #endif // HEADLESS_LIB_BROWSER_HEADLESS_PLATFORM_EVENT_SOURCE_H_ | |
| OLD | NEW |