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

Side by Side Diff: chrome/renderer/media/cast_udp_transport.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CHROME_RENDERER_MEDIA_CAST_UDP_TRANSPORT_H_ 5 #ifndef CHROME_RENDERER_MEDIA_CAST_UDP_TRANSPORT_H_
6 #define CHROME_RENDERER_MEDIA_CAST_UDP_TRANSPORT_H_ 6 #define CHROME_RENDERER_MEDIA_CAST_UDP_TRANSPORT_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/macros.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 "chrome/renderer/media/cast_session_delegate.h" 11 #include "chrome/renderer/media/cast_session_delegate.h"
12 #include "net/base/ip_endpoint.h" 12 #include "net/base/ip_endpoint.h"
13 13
14 namespace base { 14 namespace base {
15 class DictionaryValue; 15 class DictionaryValue;
16 } // namespace base 16 } // namespace base
17 17
18 class CastSession; 18 class CastSession;
(...skipping 16 matching lines...) Expand all
35 private: 35 private:
36 const scoped_refptr<CastSession> cast_session_; 36 const scoped_refptr<CastSession> cast_session_;
37 net::IPEndPoint remote_address_; 37 net::IPEndPoint remote_address_;
38 scoped_ptr<base::DictionaryValue> options_; 38 scoped_ptr<base::DictionaryValue> options_;
39 base::WeakPtrFactory<CastUdpTransport> weak_factory_; 39 base::WeakPtrFactory<CastUdpTransport> weak_factory_;
40 40
41 DISALLOW_COPY_AND_ASSIGN(CastUdpTransport); 41 DISALLOW_COPY_AND_ASSIGN(CastUdpTransport);
42 }; 42 };
43 43
44 #endif // CHROME_RENDERER_MEDIA_CAST_UDP_TRANSPORT_H_ 44 #endif // CHROME_RENDERER_MEDIA_CAST_UDP_TRANSPORT_H_
OLDNEW
« no previous file with comments | « chrome/renderer/media/cast_transport_sender_ipc.cc ('k') | chrome/renderer/media/chrome_key_systems.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698