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

Side by Side Diff: chrome/browser/media/media_internals.h

Issue 11451006: Make TabCapture requests use the target render process and render view id's for UI permissions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ 5 #ifndef CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_
6 #define CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ 6 #define CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_
7 7
8 #include <string>
9
8 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
9 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
10 #include "base/observer_list.h" 12 #include "base/observer_list.h"
11 #include "base/values.h" 13 #include "base/values.h"
12 #include "content/public/browser/media_observer.h" 14 #include "content/public/browser/media_observer.h"
13 #include "content/public/common/media_stream_request.h" 15 #include "content/public/common/media_stream_request.h"
14 16
15 class MediaCaptureDevicesDispatcher; 17 class MediaCaptureDevicesDispatcher;
16 class MediaInternalsObserver; 18 class MediaInternalsObserver;
17 class MediaStreamCaptureIndicator; 19 class MediaStreamCaptureIndicator;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 98
97 DictionaryValue data_; 99 DictionaryValue data_;
98 ObserverList<MediaInternalsObserver> observers_; 100 ObserverList<MediaInternalsObserver> observers_;
99 scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_; 101 scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_;
100 scoped_refptr<MediaCaptureDevicesDispatcher> media_devices_dispatcher_; 102 scoped_refptr<MediaCaptureDevicesDispatcher> media_devices_dispatcher_;
101 103
102 DISALLOW_COPY_AND_ASSIGN(MediaInternals); 104 DISALLOW_COPY_AND_ASSIGN(MediaInternals);
103 }; 105 };
104 106
105 #endif // CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ 107 #endif // CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698