| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_H__ | 5 #ifndef WEBKIT_GLUE_DOM_OPERATIONS_H__ |
| 6 #define WEBKIT_GLUE_DOM_OPERATIONS_H__ | 6 #define WEBKIT_GLUE_DOM_OPERATIONS_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <map> | |
| 10 #include <vector> | 9 #include <vector> |
| 11 | 10 |
| 12 #include "gfx/size.h" | 11 #include "gfx/size.h" |
| 13 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 14 | 13 |
| 15 namespace WebKit { | 14 namespace WebKit { |
| 16 class WebDocument; | 15 class WebDocument; |
| 17 class WebElement; | 16 class WebElement; |
| 18 class WebString; | 17 class WebString; |
| 19 class WebView; | 18 class WebView; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 134 |
| 136 // Puts the meta-elements of |document| that have the specified |name| in | 135 // Puts the meta-elements of |document| that have the specified |name| in |
| 137 // |meta_elements|. | 136 // |meta_elements|. |
| 138 void GetMetaElementsWithName(WebKit::WebDocument* document, | 137 void GetMetaElementsWithName(WebKit::WebDocument* document, |
| 139 const string16& name, | 138 const string16& name, |
| 140 std::vector<WebKit::WebElement>* meta_elements); | 139 std::vector<WebKit::WebElement>* meta_elements); |
| 141 | 140 |
| 142 } // namespace webkit_glue | 141 } // namespace webkit_glue |
| 143 | 142 |
| 144 #endif // WEBKIT_GLUE_DOM_OPERATIONS_H__ | 143 #endif // WEBKIT_GLUE_DOM_OPERATIONS_H__ |
| OLD | NEW |