| 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 26 matching lines...) Expand all Loading... |
| 37 #include "bindings/core/v8/ScriptValue.h" | 37 #include "bindings/core/v8/ScriptValue.h" |
| 38 #include "core/css/StyleSheetContents.h" | 38 #include "core/css/StyleSheetContents.h" |
| 39 #include "core/dom/Document.h" | 39 #include "core/dom/Document.h" |
| 40 #include "core/dom/Element.h" | 40 #include "core/dom/Element.h" |
| 41 #include "core/dom/StyleEngine.h" | 41 #include "core/dom/StyleEngine.h" |
| 42 #include "core/events/Event.h" | 42 #include "core/events/Event.h" |
| 43 #include "core/html/HTMLElement.h" | 43 #include "core/html/HTMLElement.h" |
| 44 #include "core/rendering/RenderObject.h" | 44 #include "core/rendering/RenderObject.h" |
| 45 #include "core/rendering/RenderView.h" | 45 #include "core/rendering/RenderView.h" |
| 46 #include "public/platform/WebURL.h" | 46 #include "public/platform/WebURL.h" |
| 47 #include "public/web/WebAXObject.h" | |
| 48 #include "public/web/WebDOMEvent.h" | 47 #include "public/web/WebDOMEvent.h" |
| 49 #include "public/web/WebDocumentType.h" | 48 #include "public/web/WebDocumentType.h" |
| 50 #include "public/web/WebElement.h" | 49 #include "public/web/WebElement.h" |
| 51 #include "web/WebLocalFrameImpl.h" | 50 #include "web/WebLocalFrameImpl.h" |
| 52 #include "wtf/PassRefPtr.h" | 51 #include "wtf/PassRefPtr.h" |
| 53 #include <v8.h> | 52 #include <v8.h> |
| 54 | 53 |
| 55 namespace blink { | 54 namespace blink { |
| 56 | 55 |
| 57 WebURL WebDocument::url() const | 56 WebURL WebDocument::url() const |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 m_private = elem; | 180 m_private = elem; |
| 182 return *this; | 181 return *this; |
| 183 } | 182 } |
| 184 | 183 |
| 185 WebDocument::operator PassRefPtrWillBeRawPtr<Document>() const | 184 WebDocument::operator PassRefPtrWillBeRawPtr<Document>() const |
| 186 { | 185 { |
| 187 return toDocument(m_private.get()); | 186 return toDocument(m_private.get()); |
| 188 } | 187 } |
| 189 | 188 |
| 190 } // namespace blink | 189 } // namespace blink |
| OLD | NEW |