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

Side by Side Diff: webrtc/modules/desktop_capture/window_capturer.h

Issue 1909593002: Cleanup webrtc/modules/desktop_capture (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months 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
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 20 matching lines...) Expand all
31 WindowId id; 31 WindowId id;
32 32
33 // Title of the window in UTF-8 encoding. 33 // Title of the window in UTF-8 encoding.
34 std::string title; 34 std::string title;
35 }; 35 };
36 36
37 typedef std::vector<Window> WindowList; 37 typedef std::vector<Window> WindowList;
38 38
39 static WindowCapturer* Create(const DesktopCaptureOptions& options); 39 static WindowCapturer* Create(const DesktopCaptureOptions& options);
40 40
41 // TODO(sergeyu): Remove this method. crbug.com/172183
42 static WindowCapturer* Create();
43
44 virtual ~WindowCapturer() {} 41 virtual ~WindowCapturer() {}
45 42
46 // Get list of windows. Returns false in case of a failure. 43 // Get list of windows. Returns false in case of a failure.
47 virtual bool GetWindowList(WindowList* windows) = 0; 44 virtual bool GetWindowList(WindowList* windows) = 0;
48 45
49 // Select window to be captured. Returns false in case of a failure (e.g. if 46 // Select window to be captured. Returns false in case of a failure (e.g. if
50 // there is no window with the specified id). 47 // there is no window with the specified id).
51 virtual bool SelectWindow(WindowId id) = 0; 48 virtual bool SelectWindow(WindowId id) = 0;
52 49
53 // Bring the selected window to the front. Returns false in case of a 50 // Bring the selected window to the front. Returns false in case of a
54 // failure or no window selected. 51 // failure or no window selected.
55 virtual bool BringSelectedWindowToFront() = 0; 52 virtual bool BringSelectedWindowToFront() = 0;
56 }; 53 };
57 54
58 } // namespace webrtc 55 } // namespace webrtc
59 56
60 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WINDOW_CAPTURER_H_ 57 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_WINDOW_CAPTURER_H_
61 58
OLDNEW
« no previous file with comments | « webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.cc ('k') | webrtc/modules/desktop_capture/window_capturer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698