| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "wtf/RefCounted.h" | 42 #include "wtf/RefCounted.h" |
| 43 #include "wtf/text/WTFString.h" | 43 #include "wtf/text/WTFString.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class ChromePrintContext; | 47 class ChromePrintContext; |
| 48 class GeolocationClientProxy; | 48 class GeolocationClientProxy; |
| 49 class IntSize; | 49 class IntSize; |
| 50 class KURL; | 50 class KURL; |
| 51 class Range; | 51 class Range; |
| 52 class ScriptSourceCode; | |
| 53 class SharedWorkerRepositoryClientImpl; | 52 class SharedWorkerRepositoryClientImpl; |
| 54 class TextFinder; | 53 class TextFinder; |
| 55 class WebAutofillClient; | 54 class WebAutofillClient; |
| 56 class WebDataSourceImpl; | 55 class WebDataSourceImpl; |
| 57 class WebFrameClient; | 56 class WebFrameClient; |
| 58 class WebPerformance; | 57 class WebPerformance; |
| 59 class WebPlugin; | 58 class WebPlugin; |
| 60 class WebPluginContainerImpl; | 59 class WebPluginContainerImpl; |
| 61 class WebScriptExecutionCallback; | 60 class WebScriptExecutionCallback; |
| 62 class WebView; | 61 class WebView; |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 GC_PLUGIN_IGNORE("340522") | 369 GC_PLUGIN_IGNORE("340522") |
| 371 Persistent<WebLocalFrameImpl> m_selfKeepAlive; | 370 Persistent<WebLocalFrameImpl> m_selfKeepAlive; |
| 372 #endif | 371 #endif |
| 373 }; | 372 }; |
| 374 | 373 |
| 375 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 374 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
| 376 | 375 |
| 377 } // namespace blink | 376 } // namespace blink |
| 378 | 377 |
| 379 #endif | 378 #endif |
| OLD | NEW |