| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 class LocalFrame; | 39 class LocalFrame; |
| 40 class KURL; | 40 class KURL; |
| 41 class ExceptionState; | 41 class ExceptionState; |
| 42 class SecurityOrigin; | 42 class SecurityOrigin; |
| 43 class ScriptState; | 43 class ScriptState; |
| 44 | 44 |
| 45 // This class corresponds to the History interface. | 45 // This class corresponds to the History interface. |
| 46 class CORE_EXPORT History final : public GarbageCollectedFinalized<History>, | 46 class CORE_EXPORT History final : public GarbageCollectedFinalized<History>, |
| 47 public ScriptWrappable, | 47 public ScriptWrappable, |
| 48 public ContextClient { | 48 public DOMWindowClient { |
| 49 DEFINE_WRAPPERTYPEINFO(); | 49 DEFINE_WRAPPERTYPEINFO(); |
| 50 USING_GARBAGE_COLLECTED_MIXIN(History); | 50 USING_GARBAGE_COLLECTED_MIXIN(History); |
| 51 | 51 |
| 52 public: | 52 public: |
| 53 static History* create(LocalFrame* frame) { return new History(frame); } | 53 static History* create(LocalFrame* frame) { return new History(frame); } |
| 54 | 54 |
| 55 unsigned length() const; | 55 unsigned length() const; |
| 56 SerializedScriptValue* state(); | 56 SerializedScriptValue* state(); |
| 57 | 57 |
| 58 void back(ScriptState*); | 58 void back(ScriptState*); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 ExceptionState&); | 104 ExceptionState&); |
| 105 SerializedScriptValue* stateInternal() const; | 105 SerializedScriptValue* stateInternal() const; |
| 106 HistoryScrollRestorationType scrollRestorationInternal() const; | 106 HistoryScrollRestorationType scrollRestorationInternal() const; |
| 107 | 107 |
| 108 RefPtr<SerializedScriptValue> m_lastStateObjectRequested; | 108 RefPtr<SerializedScriptValue> m_lastStateObjectRequested; |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 } // namespace blink | 111 } // namespace blink |
| 112 | 112 |
| 113 #endif // History_h | 113 #endif // History_h |
| OLD | NEW |