diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-13 23:34:28 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-13 23:34:28 +0000 |
commit | 96626f5fb69b75e96fc10f11a6b213af2ca603b6 (patch) | |
tree | 64dc255d8f9fa303a847f8470e79206e6b7e3d3b /webkit/glue/dom_operations.h | |
parent | 06e29a9c6a9f6279fcaca61fe10d7d31021b8b6e (diff) | |
download | chromium_src-96626f5fb69b75e96fc10f11a6b213af2ca603b6.zip chromium_src-96626f5fb69b75e96fc10f11a6b213af2ca603b6.tar.gz chromium_src-96626f5fb69b75e96fc10f11a6b213af2ca603b6.tar.bz2 |
FBTF: Further parts of r61237 that should be harmless to chrome_frame.
BUG=none
TEST=compiles everywhere
Review URL: http://codereview.chromium.org/3748004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62473 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/dom_operations.h')
-rw-r--r-- | webkit/glue/dom_operations.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/webkit/glue/dom_operations.h b/webkit/glue/dom_operations.h index 20084f7..1b6151b 100644 --- a/webkit/glue/dom_operations.h +++ b/webkit/glue/dom_operations.h @@ -64,6 +64,9 @@ bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view, // Structure used when installing a web page as an app. Populated via // GetApplicationInfo. struct WebApplicationInfo { + WebApplicationInfo(); + ~WebApplicationInfo(); + struct IconInfo { GURL url; int width; @@ -134,10 +137,11 @@ WebKit::WebString GetSubResourceLinkFromElement( // Puts the meta-elements of |document| that have the attribute |attribute_name| // with a value of |attribute_value| in |meta_elements|. -void GetMetaElementsWithAttribute(WebKit::WebDocument* document, - const string16& attribute_name, - const string16& atribute_value, - std::vector<WebKit::WebElement>* meta_elements); +void GetMetaElementsWithAttribute( + WebKit::WebDocument* document, + const string16& attribute_name, + const string16& atribute_value, + std::vector<WebKit::WebElement>* meta_elements); } // namespace webkit_glue |