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

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

Issue 11339014: Move content\browser\renderer_host\media to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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 CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_EVENT_HANDL ER_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_EVENT_HANDL ER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_EVENT_HANDL ER_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_EVENT_HANDL ER_H_
7 7
8 #include "base/shared_memory.h" 8 #include "base/shared_memory.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 11
12 namespace content {
13
12 // ID used for identifying an object of VideoCaptureController. 14 // ID used for identifying an object of VideoCaptureController.
13 struct CONTENT_EXPORT VideoCaptureControllerID { 15 struct CONTENT_EXPORT VideoCaptureControllerID {
14 explicit VideoCaptureControllerID(int device_id); 16 explicit VideoCaptureControllerID(int device_id);
15 17
16 bool operator<(const VideoCaptureControllerID& vc) const; 18 bool operator<(const VideoCaptureControllerID& vc) const;
17 bool operator==(const VideoCaptureControllerID& vc) const; 19 bool operator==(const VideoCaptureControllerID& vc) const;
18 20
19 int device_id; 21 int device_id;
20 }; 22 };
21 23
(...skipping 21 matching lines...) Expand all
43 int height, 45 int height,
44 int frame_rate) = 0; 46 int frame_rate) = 0;
45 47
46 // The capture session has been paused. No more frame will be sent. 48 // The capture session has been paused. No more frame will be sent.
47 virtual void OnPaused(const VideoCaptureControllerID& id) = 0; 49 virtual void OnPaused(const VideoCaptureControllerID& id) = 0;
48 50
49 protected: 51 protected:
50 virtual ~VideoCaptureControllerEventHandler() {} 52 virtual ~VideoCaptureControllerEventHandler() {}
51 }; 53 };
52 54
55 } // namespace content
56
53 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_EVENT_HA NDLER_H_ 57 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_CONTROLLER_EVENT_HA NDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698