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

Side by Side Diff: remoting/base/encoder.h

Issue 6985009: iwyu: Use callback_old.h where appropriate, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « printing/printing_context.h ('k') | remoting/jingle_glue/iq_request.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 REMOTING_BASE_ENCODER_H_ 5 #ifndef REMOTING_BASE_ENCODER_H_
6 #define REMOTING_BASE_ENCODER_H_ 6 #define REMOTING_BASE_ENCODER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback.h" 9 #include "base/callback_old.h"
10 #include "media/base/data_buffer.h" 10 #include "media/base/data_buffer.h"
11 11
12 namespace media { 12 namespace media {
13 class DataBuffer; 13 class DataBuffer;
14 } 14 }
15 15
16 namespace remoting { 16 namespace remoting {
17 17
18 class CaptureData; 18 class CaptureData;
19 class VideoPacket; 19 class VideoPacket;
(...skipping 21 matching lines...) Expand all
41 // When encoded data is available, partial or full |data_available_callback| 41 // When encoded data is available, partial or full |data_available_callback|
42 // is called. 42 // is called.
43 virtual void Encode(scoped_refptr<CaptureData> capture_data, 43 virtual void Encode(scoped_refptr<CaptureData> capture_data,
44 bool key_frame, 44 bool key_frame,
45 DataAvailableCallback* data_available_callback) = 0; 45 DataAvailableCallback* data_available_callback) = 0;
46 }; 46 };
47 47
48 } // namespace remoting 48 } // namespace remoting
49 49
50 #endif // REMOTING_BASE_ENCODER_H_ 50 #endif // REMOTING_BASE_ENCODER_H_
OLDNEW
« no previous file with comments | « printing/printing_context.h ('k') | remoting/jingle_glue/iq_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698