| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 15 matching lines...) Expand all Loading... |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebFrameImpl_h | 31 #ifndef WebFrameImpl_h |
| 32 #define WebFrameImpl_h | 32 #define WebFrameImpl_h |
| 33 | 33 |
| 34 #include "WebFrame.h" | 34 #include "WebFrame.h" |
| 35 | 35 |
| 36 #include "FloatRect.h" |
| 36 #include "Frame.h" | 37 #include "Frame.h" |
| 37 #include "FrameDestructionObserver.h" | 38 #include "FrameDestructionObserver.h" |
| 38 #include "FrameLoaderClientImpl.h" | 39 #include "FrameLoaderClientImpl.h" |
| 39 #include <public/WebFileSystemType.h> | 40 #include <public/WebFileSystemType.h> |
| 40 #include <wtf/Compiler.h> | 41 #include <wtf/Compiler.h> |
| 41 #include <wtf/OwnPtr.h> | 42 #include <wtf/OwnPtr.h> |
| 42 #include <wtf/RefCounted.h> | 43 #include <wtf/RefCounted.h> |
| 43 #include <wtf/text/WTFString.h> | 44 #include <wtf/text/WTFString.h> |
| 44 | 45 |
| 45 namespace WebCore { | 46 namespace WebCore { |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 long long m_identifier; | 488 long long m_identifier; |
| 488 | 489 |
| 489 // Ensure we don't overwrite valid history data during same document loads | 490 // Ensure we don't overwrite valid history data during same document loads |
| 490 // from HistoryItems | 491 // from HistoryItems |
| 491 bool m_inSameDocumentHistoryLoad; | 492 bool m_inSameDocumentHistoryLoad; |
| 492 }; | 493 }; |
| 493 | 494 |
| 494 } // namespace WebKit | 495 } // namespace WebKit |
| 495 | 496 |
| 496 #endif | 497 #endif |
| OLD | NEW |