| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "public/platform/WebPrivatePtr.h" | 35 #include "public/platform/WebPrivatePtr.h" |
| 36 | 36 |
| 37 #if BLINK_IMPLEMENTATION | 37 #if BLINK_IMPLEMENTATION |
| 38 #include "platform/wtf/PassRefPtr.h" | 38 #include "platform/wtf/PassRefPtr.h" |
| 39 #endif | 39 #endif |
| 40 | 40 |
| 41 namespace v8 { | 41 namespace v8 { |
| 42 class Value; | 42 class Value; |
| 43 template <class T> | 43 template <class T> |
| 44 class Local; | 44 class Local; |
| 45 } | 45 } // namespace v8 |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class MediaStreamTrack; | 49 class MediaStreamTrack; |
| 50 | 50 |
| 51 class WebDOMMediaStreamTrack { | 51 class WebDOMMediaStreamTrack { |
| 52 public: | 52 public: |
| 53 WebDOMMediaStreamTrack(const WebDOMMediaStreamTrack& b) { Assign(b); } | 53 WebDOMMediaStreamTrack(const WebDOMMediaStreamTrack& b) { Assign(b); } |
| 54 ~WebDOMMediaStreamTrack() { Reset(); } | 54 ~WebDOMMediaStreamTrack() { Reset(); } |
| 55 | 55 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 70 #if BLINK_IMPLEMENTATION | 70 #if BLINK_IMPLEMENTATION |
| 71 WebDOMMediaStreamTrack(MediaStreamTrack*); | 71 WebDOMMediaStreamTrack(MediaStreamTrack*); |
| 72 #endif | 72 #endif |
| 73 | 73 |
| 74 WebPrivatePtr<MediaStreamTrack> private_; | 74 WebPrivatePtr<MediaStreamTrack> private_; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace blink | 77 } // namespace blink |
| 78 | 78 |
| 79 #endif | 79 #endif |
| OLD | NEW |