diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-19 05:11:03 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-19 05:11:03 +0000 |
commit | 50ae00ef9da3304a68d9f811380572a5e2ed03cb (patch) | |
tree | e58480c200f54468e61635a134cb6b51fb7809df /webkit/glue/dom_operations.h | |
parent | a9e8a092db75a1aff5e03d29215390ade65dec1e (diff) | |
download | chromium_src-50ae00ef9da3304a68d9f811380572a5e2ed03cb.zip chromium_src-50ae00ef9da3304a68d9f811380572a5e2ed03cb.tar.gz chromium_src-50ae00ef9da3304a68d9f811380572a5e2ed03cb.tar.bz2 |
Delete glue/webview{_delegate}.h
R=dglazkov
BUG=10033
TEST=none
Review URL: http://codereview.chromium.org/293001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29390 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/dom_operations.h')
-rw-r--r-- | webkit/glue/dom_operations.h | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/webkit/glue/dom_operations.h b/webkit/glue/dom_operations.h index 1694f4d..af188fc 100644 --- a/webkit/glue/dom_operations.h +++ b/webkit/glue/dom_operations.h @@ -18,9 +18,12 @@ class HTMLInputElement; class Node; } +namespace WebKit { +class WebView; +} + struct FormData; class WebFrameImpl; -class WebView; // A collection of operations that access the underlying WebKit DOM directly. namespace webkit_glue { @@ -47,14 +50,14 @@ struct FileUploadData { FormValueMap other_form_values; }; -bool FillFormToUploadFile(WebView* view, const FileUploadData& data); +bool FillFormToUploadFile(WebKit::WebView* view, const FileUploadData& data); // Fill in a form identified by form |data|. -bool FillForm(WebView* view, const FormData& data); +bool FillForm(WebKit::WebView* view, const FormData& data); // Fill matching password forms and trigger autocomplete in the case of multiple // matching logins. -void FillPasswordForm(WebView* view, +void FillPasswordForm(WebKit::WebView* view, const PasswordFormDomManager::FillData& data); // Structure for storage the result of getting all savable resource links @@ -86,7 +89,7 @@ struct SavableResourcesResult { // and sub-frame. After collecting all savable resource links, this function // will send those links to embedder. Return value indicates whether we get // all saved resource links successfully. -bool GetAllSavableResourceLinksForCurrentPage(WebView* view, +bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view, const GURL& page_url, SavableResourcesResult* savable_resources_result, const char** savable_schemes); @@ -127,12 +130,12 @@ bool ParseIconSizes(const std::wstring& text, // Gets the application info for the specified page. See the description of // WebApplicationInfo for details as to where each field comes from. -void GetApplicationInfo(WebView* view, WebApplicationInfo* app_info); +void GetApplicationInfo(WebKit::WebView* view, WebApplicationInfo* app_info); // Invokes pauseAnimationAtTime on the AnimationController associated with the // |view|s main frame. // This is used by test shell. -bool PauseAnimationAtTimeOnElementWithId(WebView* view, +bool PauseAnimationAtTimeOnElementWithId(WebKit::WebView* view, const std::string& animation_name, double time, const std::string& element_id); @@ -140,18 +143,18 @@ bool PauseAnimationAtTimeOnElementWithId(WebView* view, // Invokes pauseTransitionAtTime on the AnimationController associated with the // |view|s main frame. // This is used by test shell. -bool PauseTransitionAtTimeOnElementWithId(WebView* view, +bool PauseTransitionAtTimeOnElementWithId(WebKit::WebView* view, const std::string& property_name, double time, const std::string& element_id); // Returns true if the element with |element_id| as its id has autocomplete // on. -bool ElementDoesAutoCompleteForElementWithId(WebView* view, +bool ElementDoesAutoCompleteForElementWithId(WebKit::WebView* view, const std::string& element_id); // Returns the number of animations currently running. -int NumberOfActiveAnimations(WebView* view); +int NumberOfActiveAnimations(WebKit::WebView* view); // Returns the passed element/node casted to an HTMLInputElement if it is one, // NULL if it is not an HTMLInputElement. |