| 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 18 matching lines...) Expand all Loading... |
| 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 "FrameLoaderClientImpl.h" | 36 #include "FrameLoaderClientImpl.h" |
| 37 #include "core/page/Frame.h" | 37 #include "core/page/Frame.h" |
| 38 #include "core/page/FrameDestructionObserver.h" | 38 #include "core/page/FrameDestructionObserver.h" |
| 39 #include "core/platform/graphics/FloatRect.h" | 39 #include "platform/geometry/FloatRect.h" |
| 40 #include "public/platform/WebFileSystemType.h" | 40 #include "public/platform/WebFileSystemType.h" |
| 41 #include "wtf/Compiler.h" | 41 #include "wtf/Compiler.h" |
| 42 #include "wtf/OwnPtr.h" | 42 #include "wtf/OwnPtr.h" |
| 43 #include "wtf/RefCounted.h" | 43 #include "wtf/RefCounted.h" |
| 44 #include "wtf/text/WTFString.h" | 44 #include "wtf/text/WTFString.h" |
| 45 | 45 |
| 46 namespace WebCore { | 46 namespace WebCore { |
| 47 class GraphicsContext; | 47 class GraphicsContext; |
| 48 class HTMLInputElement; | 48 class HTMLInputElement; |
| 49 class HistoryItem; | 49 class HistoryItem; |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 { | 510 { |
| 511 return static_cast<const WebFrameImpl*>(webFrame); | 511 return static_cast<const WebFrameImpl*>(webFrame); |
| 512 } | 512 } |
| 513 | 513 |
| 514 // This will catch anyone doing an unnecessary cast. | 514 // This will catch anyone doing an unnecessary cast. |
| 515 void toWebFrameImpl(const WebFrameImpl*); | 515 void toWebFrameImpl(const WebFrameImpl*); |
| 516 | 516 |
| 517 } // namespace WebKit | 517 } // namespace WebKit |
| 518 | 518 |
| 519 #endif | 519 #endif |
| OLD | NEW |