| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GLUE_DOM_OPERATIONS_PRIVATE_H_ | 5 #ifndef WEBKIT_GLUE_DOM_OPERATIONS_PRIVATE_H_ |
| 6 #define WEBKIT_GLUE_DOM_OPERATIONS_PRIVATE_H_ | 6 #define WEBKIT_GLUE_DOM_OPERATIONS_PRIVATE_H_ |
| 7 | 7 |
| 8 namespace WebCore { | 8 namespace WebCore { |
| 9 class AtomicString; | 9 class AtomicString; |
| 10 class Document; | 10 class Document; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 // for link, a, area element, when attribute name is href, | 47 // for link, a, area element, when attribute name is href, |
| 48 // for form element, when attribute name is action, | 48 // for form element, when attribute name is action, |
| 49 // for input, type=image, when attribute name is src, | 49 // for input, type=image, when attribute name is src, |
| 50 // for body, table, tr, td, when attribute name is background, | 50 // for body, table, tr, td, when attribute name is background, |
| 51 // for blockquote, q, del, ins, when attribute name is cite, | 51 // for blockquote, q, del, ins, when attribute name is cite, |
| 52 // we can consider the attribute value has legal link. | 52 // we can consider the attribute value has legal link. |
| 53 bool ElementHasLegalLinkAttribute(const WebCore::Element* element, | 53 bool ElementHasLegalLinkAttribute(const WebCore::Element* element, |
| 54 const WebCore::QualifiedName& attr_name); | 54 const WebCore::QualifiedName& attr_name); |
| 55 | 55 |
| 56 // Get pointer of WebFrameImpl from webview according to specific URL. | 56 // Get pointer of WebFrameImpl from webview according to specific URL. |
| 57 WebFrameImpl* GetWebFrameImplFromWebViewForSpecificURL(WebView* view, | 57 WebFrameImpl* GetWebFrameImplFromWebViewForSpecificURL(WebKit::WebView* view, |
| 58 const GURL& page_url); | 58 const GURL& page_url); |
| 59 | 59 |
| 60 } // namespace webkit_glue | 60 } // namespace webkit_glue |
| 61 | 61 |
| 62 #endif // WEBKIT_GLUE_DOM_OPERATIONS_PRIVATE_H_ | 62 #endif // WEBKIT_GLUE_DOM_OPERATIONS_PRIVATE_H_ |
| OLD | NEW |