| 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 class DocumentType; | 44 class DocumentType; |
| 45 } | 45 } |
| 46 namespace WTF { template <typename T> class PassRefPtr; } | 46 namespace WTF { template <typename T> class PassRefPtr; } |
| 47 #endif | 47 #endif |
| 48 | 48 |
| 49 namespace v8 { | 49 namespace v8 { |
| 50 class Value; | 50 class Value; |
| 51 template <class T> class Handle; | 51 template <class T> class Handle; |
| 52 } | 52 } |
| 53 | 53 |
| 54 namespace WebKit { | 54 namespace blink { |
| 55 class WebAXObject; | 55 class WebAXObject; |
| 56 class WebDocumentType; | 56 class WebDocumentType; |
| 57 class WebElement; | 57 class WebElement; |
| 58 class WebFormElement; | 58 class WebFormElement; |
| 59 class WebFrame; | 59 class WebFrame; |
| 60 class WebNodeCollection; | 60 class WebNodeCollection; |
| 61 class WebNodeList; | 61 class WebNodeList; |
| 62 class WebString; | 62 class WebString; |
| 63 class WebURL; | 63 class WebURL; |
| 64 | 64 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 144 |
| 145 BLINK_EXPORT v8::Handle<v8::Value> registerEmbedderCustomElement(const WebSt
ring& name, v8::Handle<v8::Value> options, WebExceptionCode&); | 145 BLINK_EXPORT v8::Handle<v8::Value> registerEmbedderCustomElement(const WebSt
ring& name, v8::Handle<v8::Value> options, WebExceptionCode&); |
| 146 | 146 |
| 147 #if BLINK_IMPLEMENTATION | 147 #if BLINK_IMPLEMENTATION |
| 148 WebDocument(const WTF::PassRefPtr<WebCore::Document>&); | 148 WebDocument(const WTF::PassRefPtr<WebCore::Document>&); |
| 149 WebDocument& operator=(const WTF::PassRefPtr<WebCore::Document>&); | 149 WebDocument& operator=(const WTF::PassRefPtr<WebCore::Document>&); |
| 150 operator WTF::PassRefPtr<WebCore::Document>() const; | 150 operator WTF::PassRefPtr<WebCore::Document>() const; |
| 151 #endif | 151 #endif |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 } // namespace WebKit | 154 } // namespace blink |
| 155 | 155 |
| 156 #endif | 156 #endif |
| OLD | NEW |