| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 29 matching lines...) Expand all Loading... |
| 40 #if BLINK_IMPLEMENTATION | 40 #if BLINK_IMPLEMENTATION |
| 41 #include "platform/heap/Handle.h" | 41 #include "platform/heap/Handle.h" |
| 42 #endif | 42 #endif |
| 43 | 43 |
| 44 namespace v8 { | 44 namespace v8 { |
| 45 class Isolate; | 45 class Isolate; |
| 46 class Object; | 46 class Object; |
| 47 class Value; | 47 class Value; |
| 48 template <class T> | 48 template <class T> |
| 49 class Local; | 49 class Local; |
| 50 } | 50 } // namespace v8 |
| 51 | 51 |
| 52 namespace blink { | 52 namespace blink { |
| 53 | 53 |
| 54 class Blob; | 54 class Blob; |
| 55 | 55 |
| 56 class WebBlob { | 56 class WebBlob { |
| 57 public: | 57 public: |
| 58 ~WebBlob() { Reset(); } | 58 ~WebBlob() { Reset(); } |
| 59 | 59 |
| 60 WebBlob() {} | 60 WebBlob() {} |
| (...skipping 25 matching lines...) Expand all Loading... |
| 86 WebBlob& operator=(Blob*); | 86 WebBlob& operator=(Blob*); |
| 87 #endif | 87 #endif |
| 88 | 88 |
| 89 protected: | 89 protected: |
| 90 WebPrivatePtr<Blob> private_; | 90 WebPrivatePtr<Blob> private_; |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 } // namespace blink | 93 } // namespace blink |
| 94 | 94 |
| 95 #endif // WebBlob_h | 95 #endif // WebBlob_h |
| OLD | NEW |