| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "web/WebFrameWidgetBase.h" | 44 #include "web/WebFrameWidgetBase.h" |
| 45 #include "wtf/Compiler.h" | 45 #include "wtf/Compiler.h" |
| 46 #include "wtf/text/WTFString.h" | 46 #include "wtf/text/WTFString.h" |
| 47 #include <memory> | 47 #include <memory> |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class ChromePrintContext; | 51 class ChromePrintContext; |
| 52 class IntSize; | 52 class IntSize; |
| 53 class KURL; | 53 class KURL; |
| 54 class Range; | |
| 55 class ScrollableArea; | 54 class ScrollableArea; |
| 56 class SharedWorkerRepositoryClientImpl; | 55 class SharedWorkerRepositoryClientImpl; |
| 57 class TextFinder; | 56 class TextFinder; |
| 58 class WebAssociatedURLLoader; | 57 class WebAssociatedURLLoader; |
| 59 struct WebAssociatedURLLoaderOptions; | 58 struct WebAssociatedURLLoaderOptions; |
| 60 class WebAutofillClient; | 59 class WebAutofillClient; |
| 61 class WebDataSourceImpl; | 60 class WebDataSourceImpl; |
| 62 class WebDevToolsAgentImpl; | 61 class WebDevToolsAgentImpl; |
| 63 class WebDevToolsFrontendImpl; | 62 class WebDevToolsFrontendImpl; |
| 64 class WebFrameClient; | 63 class WebFrameClient; |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 | 473 |
| 475 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 474 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 476 WebFrame, | 475 WebFrame, |
| 477 frame, | 476 frame, |
| 478 frame->isWebLocalFrame(), | 477 frame->isWebLocalFrame(), |
| 479 frame.isWebLocalFrame()); | 478 frame.isWebLocalFrame()); |
| 480 | 479 |
| 481 } // namespace blink | 480 } // namespace blink |
| 482 | 481 |
| 483 #endif | 482 #endif |
| OLD | NEW |