| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 namespace v8 { | 50 namespace v8 { |
| 51 class Isolate; | 51 class Isolate; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 namespace blink { | 54 namespace blink { |
| 55 | 55 |
| 56 class BasePage; | 56 class BasePage; |
| 57 class CallbackStack; | 57 class CallbackStack; |
| 58 struct GCInfo; | 58 struct GCInfo; |
| 59 class GarbageCollectedMixinConstructorMarker; | 59 class GarbageCollectedMixinConstructorMarker; |
| 60 class HeapObjectHeader; | |
| 61 class PersistentNode; | 60 class PersistentNode; |
| 62 class PersistentRegion; | 61 class PersistentRegion; |
| 63 class BaseArena; | 62 class BaseArena; |
| 64 class SafePointAwareMutexLocker; | 63 class SafePointAwareMutexLocker; |
| 65 class SafePointBarrier; | 64 class SafePointBarrier; |
| 66 class ThreadHeap; | 65 class ThreadHeap; |
| 67 class ThreadState; | 66 class ThreadState; |
| 68 class Visitor; | 67 class Visitor; |
| 69 | 68 |
| 70 // Declare that a class has a pre-finalizer. The pre-finalizer is called | 69 // Declare that a class has a pre-finalizer. The pre-finalizer is called |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 class ThreadStateFor<AnyThread> { | 752 class ThreadStateFor<AnyThread> { |
| 754 STATIC_ONLY(ThreadStateFor); | 753 STATIC_ONLY(ThreadStateFor); |
| 755 | 754 |
| 756 public: | 755 public: |
| 757 static ThreadState* state() { return ThreadState::current(); } | 756 static ThreadState* state() { return ThreadState::current(); } |
| 758 }; | 757 }; |
| 759 | 758 |
| 760 } // namespace blink | 759 } // namespace blink |
| 761 | 760 |
| 762 #endif // ThreadState_h | 761 #endif // ThreadState_h |
| OLD | NEW |