| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 namespace v8 { | 44 namespace v8 { |
| 45 class Value; | 45 class Value; |
| 46 template <class T> class Handle; | 46 template <class T> class Handle; |
| 47 } | 47 } |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class Document; | 51 class Document; |
| 52 class DocumentType; | 52 class DocumentType; |
| 53 class WebAXObject; | |
| 54 class WebDocumentType; | 53 class WebDocumentType; |
| 55 class WebElement; | 54 class WebElement; |
| 56 class WebString; | 55 class WebString; |
| 57 class WebURL; | 56 class WebURL; |
| 58 | 57 |
| 59 // Provides readonly access to some properties of a DOM document. | 58 // Provides readonly access to some properties of a DOM document. |
| 60 class WebDocument : public WebNode { | 59 class WebDocument : public WebNode { |
| 61 public: | 60 public: |
| 62 WebDocument() { } | 61 WebDocument() { } |
| 63 WebDocument(const WebDocument& e) : WebNode(e) { } | 62 WebDocument(const WebDocument& e) : WebNode(e) { } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 #if BLINK_IMPLEMENTATION | 101 #if BLINK_IMPLEMENTATION |
| 103 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); | 102 WebDocument(const PassRefPtrWillBeRawPtr<Document>&); |
| 104 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); | 103 WebDocument& operator=(const PassRefPtrWillBeRawPtr<Document>&); |
| 105 operator PassRefPtrWillBeRawPtr<Document>() const; | 104 operator PassRefPtrWillBeRawPtr<Document>() const; |
| 106 #endif | 105 #endif |
| 107 }; | 106 }; |
| 108 | 107 |
| 109 } // namespace blink | 108 } // namespace blink |
| 110 | 109 |
| 111 #endif | 110 #endif |
| OLD | NEW |