| 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 // WebCore provides hooks for several kinds of functionality, allowing separate | 5 // WebCore provides hooks for several kinds of functionality, allowing separate |
| 6 // classes termed "delegates" to receive notifications (in the form of direct | 6 // classes termed "delegates" to receive notifications (in the form of direct |
| 7 // function calls) when certain events are about to occur or have just occurred. | 7 // function calls) when certain events are about to occur or have just occurred. |
| 8 // In some cases, the delegate implements the needed functionality; in others, | 8 // In some cases, the delegate implements the needed functionality; in others, |
| 9 // the delegate has some control over the behavior but doesn't actually | 9 // the delegate has some control over the behavior but doesn't actually |
| 10 // implement it. For example, the UI delegate is responsible for showing a | 10 // implement it. For example, the UI delegate is responsible for showing a |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // TODO(darin): Eliminate WebViewDelegate in favor of WebViewClient. | 55 // TODO(darin): Eliminate WebViewDelegate in favor of WebViewClient. |
| 56 class WebViewDelegate : public WebKit::WebViewClient { | 56 class WebViewDelegate : public WebKit::WebViewClient { |
| 57 public: | 57 public: |
| 58 // WebView additions ------------------------------------------------------- | 58 // WebView additions ------------------------------------------------------- |
| 59 | 59 |
| 60 // Returns whether this WebView was opened by a user gesture. | 60 // Returns whether this WebView was opened by a user gesture. |
| 61 virtual bool WasOpenedByUserGesture() const { | 61 virtual bool WasOpenedByUserGesture() const { |
| 62 return true; | 62 return true; |
| 63 } | 63 } |
| 64 | 64 |
| 65 // ChromeClient ------------------------------------------------------------ | |
| 66 | |
| 67 // Queries the browser for suggestions to be shown for the form text field | |
| 68 // named |field_name|. |text| is the text entered by the user so far and | |
| 69 // |node_id| is the id of the node of the input field. | |
| 70 virtual void QueryFormFieldAutofill(const std::wstring& field_name, | |
| 71 const std::wstring& text, | |
| 72 int64 node_id) { | |
| 73 } | |
| 74 | |
| 75 // Instructs the browser to remove the autofill entry specified from it DB. | |
| 76 virtual void RemoveStoredAutofillEntry(const std::wstring& name, | |
| 77 const std::wstring& value) { | |
| 78 } | |
| 79 | |
| 80 // DevTools ---------------------------------------------------------------- | 65 // DevTools ---------------------------------------------------------------- |
| 81 | 66 |
| 82 virtual WebDevToolsAgentDelegate* GetWebDevToolsAgentDelegate() { | 67 virtual WebDevToolsAgentDelegate* GetWebDevToolsAgentDelegate() { |
| 83 return NULL; | 68 return NULL; |
| 84 } | 69 } |
| 85 | 70 |
| 86 protected: | 71 protected: |
| 87 ~WebViewDelegate() { } | 72 ~WebViewDelegate() { } |
| 88 }; | 73 }; |
| 89 | 74 |
| 90 #endif // WEBKIT_GLUE_WEBVIEW_DELEGATE_H_ | 75 #endif // WEBKIT_GLUE_WEBVIEW_DELEGATE_H_ |
| OLD | NEW |