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

Side by Side Diff: chromecast/media/base/media_message_loop.h

Issue 1852433005: Convert //base to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase after r384946 Created 4 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ 5 #ifndef CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_
6 #define CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ 6 #define CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
11 12
12 namespace base { 13 namespace base {
13 class SingleThreadTaskRunner; 14 class SingleThreadTaskRunner;
14 class Thread; 15 class Thread;
15 } 16 }
16 17
17 namespace chromecast { 18 namespace chromecast {
18 namespace media { 19 namespace media {
19 20
(...skipping 13 matching lines...) Expand all
33 34
34 scoped_ptr<base::Thread> thread_; 35 scoped_ptr<base::Thread> thread_;
35 36
36 DISALLOW_COPY_AND_ASSIGN(MediaMessageLoop); 37 DISALLOW_COPY_AND_ASSIGN(MediaMessageLoop);
37 }; 38 };
38 39
39 } // namespace media 40 } // namespace media
40 } // namespace chromecast 41 } // namespace chromecast
41 42
42 #endif // CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_ 43 #endif // CHROMECAST_MEDIA_BASE_MEDIA_MESSAGE_LOOP_H_
OLDNEW
« no previous file with comments | « chromecast/browser/media/media_pipeline_backend_factory.h ('k') | chromecast/media/base/media_resource_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698