| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_H_ | 5 #ifndef CHROME_COMMON_MEDIA_ROUTER_MEDIA_SOURCE_H_ |
| 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_H_ | 6 #define CHROME_COMMON_MEDIA_ROUTER_MEDIA_SOURCE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <ostream> | 10 #include <ostream> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/hash.h" | 13 #include "base/hash.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 // TODO(mfoltz): Right now this is a wrapper for std::string. Factor methods | 16 // TODO(mfoltz): Right now this is a wrapper for std::string. Factor methods |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 } | 47 } |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 MediaSource::Id id_; | 51 MediaSource::Id id_; |
| 52 GURL url_; | 52 GURL url_; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace media_router | 55 } // namespace media_router |
| 56 | 56 |
| 57 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_H_ | 57 #endif // CHROME_COMMON_MEDIA_ROUTER_MEDIA_SOURCE_H_ |
| OLD | NEW |