| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "wtf/Forward.h" | 35 #include "wtf/Forward.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class LocalFrame; | 39 class LocalFrame; |
| 40 class KURL; | 40 class KURL; |
| 41 class ExecutionContext; | 41 class ExecutionContext; |
| 42 class ExceptionState; | 42 class ExceptionState; |
| 43 class SecurityOrigin; | 43 class SecurityOrigin; |
| 44 | 44 |
| 45 // This class corresponds to the History interface. |
| 45 class CORE_EXPORT History final : public GarbageCollectedFinalized<History>, | 46 class CORE_EXPORT History final : public GarbageCollectedFinalized<History>, |
| 46 public ScriptWrappable, | 47 public ScriptWrappable, |
| 47 public DOMWindowProperty { | 48 public DOMWindowProperty { |
| 48 DEFINE_WRAPPERTYPEINFO(); | 49 DEFINE_WRAPPERTYPEINFO(); |
| 49 USING_GARBAGE_COLLECTED_MIXIN(History); | 50 USING_GARBAGE_COLLECTED_MIXIN(History); |
| 50 | 51 |
| 51 public: | 52 public: |
| 52 static History* create(LocalFrame* frame) { return new History(frame); } | 53 static History* create(LocalFrame* frame) { return new History(frame); } |
| 53 | 54 |
| 54 unsigned length() const; | 55 unsigned length() const; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 ExceptionState&); | 104 ExceptionState&); |
| 104 SerializedScriptValue* stateInternal() const; | 105 SerializedScriptValue* stateInternal() const; |
| 105 HistoryScrollRestorationType scrollRestorationInternal() const; | 106 HistoryScrollRestorationType scrollRestorationInternal() const; |
| 106 | 107 |
| 107 RefPtr<SerializedScriptValue> m_lastStateObjectRequested; | 108 RefPtr<SerializedScriptValue> m_lastStateObjectRequested; |
| 108 }; | 109 }; |
| 109 | 110 |
| 110 } // namespace blink | 111 } // namespace blink |
| 111 | 112 |
| 112 #endif // History_h | 113 #endif // History_h |
| OLD | NEW |