Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: headless/lib/browser/headless_platform_event_source.h

Issue 1991953002: Implement a runtime headless mode for Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add headless platform event source Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698