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

Side by Side Diff: content/browser/renderer_host/media/peer_connection_tracker_host.h

Issue 2123863004: ScreenCapture for Android phase1, part II (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments in components/content_settings/ Created 4 years, 5 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 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 int lid, const std::string& type, const std::string& value); 52 int lid, const std::string& type, const std::string& value);
53 void OnAddStats(int lid, const base::ListValue& value); 53 void OnAddStats(int lid, const base::ListValue& value);
54 void OnGetUserMedia(const std::string& origin, 54 void OnGetUserMedia(const std::string& origin,
55 bool audio, 55 bool audio,
56 bool video, 56 bool video,
57 const std::string& audio_constraints, 57 const std::string& audio_constraints,
58 const std::string& video_constraints); 58 const std::string& video_constraints);
59 void SendOnSuspendOnUIThread(); 59 void SendOnSuspendOnUIThread();
60 60
61 int render_process_id_; 61 int render_process_id_;
62 bool isScreenCapture_;
miu 2016/07/14 22:25:53 style: bool is_screen_capture_;
braveyao 2016/07/18 20:46:31 Done.
62 63
63 WebRTCEventLogHost* const event_log_host_; 64 WebRTCEventLogHost* const event_log_host_;
64 65
65 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTrackerHost); 66 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTrackerHost);
66 }; 67 };
67 68
68 } // namespace content 69 } // namespace content
69 70
70 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ 71 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698