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

Side by Side Diff: media/base/pipeline.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/base/android/media_codec_bridge.h ('k') | media/base/pipeline_unittest.cc » ('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) 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 MEDIA_BASE_PIPELINE_H_ 5 #ifndef MEDIA_BASE_PIPELINE_H_
6 #define MEDIA_BASE_PIPELINE_H_ 6 #define MEDIA_BASE_PIPELINE_H_
7 7
8 #include "base/gtest_prod_util.h" 8 #include "base/gtest_prod_util.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "base/synchronization/lock.h" 11 #include "base/synchronization/lock.h"
12 #include "base/threading/thread_checker.h" 12 #include "base/threading/thread_checker.h"
13 #include "base/time/default_tick_clock.h" 13 #include "base/time/default_tick_clock.h"
14 #include "media/base/buffering_state.h" 14 #include "media/base/buffering_state.h"
15 #include "media/base/cdm_context.h" 15 #include "media/base/cdm_context.h"
16 #include "media/base/demuxer.h" 16 #include "media/base/demuxer.h"
17 #include "media/base/media_export.h" 17 #include "media/base/media_export.h"
18 #include "media/base/pipeline_status.h" 18 #include "media/base/pipeline_status.h"
19 #include "media/base/ranges.h" 19 #include "media/base/ranges.h"
20 #include "media/base/serial_runner.h" 20 #include "media/base/serial_runner.h"
21 #include "media/base/text_track.h" 21 #include "media/base/text_track.h"
22 #include "media/base/video_rotation.h" 22 #include "media/base/video_rotation.h"
23 #include "ui/gfx/size.h" 23 #include "ui/gfx/geometry/size.h"
24 24
25 namespace base { 25 namespace base {
26 class SingleThreadTaskRunner; 26 class SingleThreadTaskRunner;
27 class TimeDelta; 27 class TimeDelta;
28 } 28 }
29 29
30 namespace media { 30 namespace media {
31 31
32 class MediaLog; 32 class MediaLog;
33 class Renderer; 33 class Renderer;
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 385
386 // NOTE: Weak pointers must be invalidated before all other member variables. 386 // NOTE: Weak pointers must be invalidated before all other member variables.
387 base::WeakPtrFactory<Pipeline> weak_factory_; 387 base::WeakPtrFactory<Pipeline> weak_factory_;
388 388
389 DISALLOW_COPY_AND_ASSIGN(Pipeline); 389 DISALLOW_COPY_AND_ASSIGN(Pipeline);
390 }; 390 };
391 391
392 } // namespace media 392 } // namespace media
393 393
394 #endif // MEDIA_BASE_PIPELINE_H_ 394 #endif // MEDIA_BASE_PIPELINE_H_
OLDNEW
« no previous file with comments | « media/base/android/media_codec_bridge.h ('k') | media/base/pipeline_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698