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

Side by Side Diff: media/video/picture.h

Issue 832953002: Cleanup: Update the path to gfx size headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 11 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
« no previous file with comments | « media/video/capture/video_capture_types.h ('k') | media/video/video_decode_accelerator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 MEDIA_VIDEO_PICTURE_H_ 5 #ifndef MEDIA_VIDEO_PICTURE_H_
6 #define MEDIA_VIDEO_PICTURE_H_ 6 #define MEDIA_VIDEO_PICTURE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "gpu/command_buffer/common/mailbox.h" 9 #include "gpu/command_buffer/common/mailbox.h"
10 #include "media/base/media_export.h" 10 #include "media/base/media_export.h"
11 #include "ui/gfx/geometry/rect.h" 11 #include "ui/gfx/geometry/rect.h"
12 #include "ui/gfx/size.h" 12 #include "ui/gfx/geometry/size.h"
13 13
14 namespace media { 14 namespace media {
15 15
16 // A picture buffer that is composed of a GLES2 texture. 16 // A picture buffer that is composed of a GLES2 texture.
17 // This is the media-namespace equivalent of PP_PictureBuffer_Dev. 17 // This is the media-namespace equivalent of PP_PictureBuffer_Dev.
18 class MEDIA_EXPORT PictureBuffer { 18 class MEDIA_EXPORT PictureBuffer {
19 public: 19 public:
20 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id); 20 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id);
21 PictureBuffer(int32 id, 21 PictureBuffer(int32 id,
22 gfx::Size size, 22 gfx::Size size,
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 private: 81 private:
82 int32 picture_buffer_id_; 82 int32 picture_buffer_id_;
83 int32 bitstream_buffer_id_; 83 int32 bitstream_buffer_id_;
84 gfx::Rect visible_rect_; 84 gfx::Rect visible_rect_;
85 }; 85 };
86 86
87 } // namespace media 87 } // namespace media
88 88
89 #endif // MEDIA_VIDEO_PICTURE_H_ 89 #endif // MEDIA_VIDEO_PICTURE_H_
OLDNEW
« no previous file with comments | « media/video/capture/video_capture_types.h ('k') | media/video/video_decode_accelerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698