| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 virtual bool navigate(const TestNavigationEntry&, bool reload); | 130 virtual bool navigate(const TestNavigationEntry&, bool reload); |
| 131 | 131 |
| 132 // WebKit::WebPrerendererClient | 132 // WebKit::WebPrerendererClient |
| 133 virtual void willAddPrerender(WebKit::WebPrerender*) OVERRIDE; | 133 virtual void willAddPrerender(WebKit::WebPrerender*) OVERRIDE; |
| 134 | 134 |
| 135 // WebKit::WebViewClient | 135 // WebKit::WebViewClient |
| 136 virtual WebKit::WebView* createView(WebKit::WebFrame*, const WebKit::WebURLR
equest&, const WebKit::WebWindowFeatures&, const WebKit::WebString&, WebKit::Web
NavigationPolicy); | 136 virtual WebKit::WebView* createView(WebKit::WebFrame*, const WebKit::WebURLR
equest&, const WebKit::WebWindowFeatures&, const WebKit::WebString&, WebKit::Web
NavigationPolicy); |
| 137 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType); | 137 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType); |
| 138 virtual WebKit::WebWidget* createPopupMenu(const WebKit::WebPopupMenuInfo&); | 138 virtual WebKit::WebWidget* createPopupMenu(const WebKit::WebPopupMenuInfo&); |
| 139 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(unsigned
quota); | 139 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(unsigned
quota); |
| 140 |
| 140 virtual void didAddMessageToConsole(const WebKit::WebConsoleMessage&, const
WebKit::WebString& sourceName, unsigned sourceLine); | 141 virtual void didAddMessageToConsole(const WebKit::WebConsoleMessage&, const
WebKit::WebString& sourceName, unsigned sourceLine); |
| 141 virtual void didStartLoading(); | 142 virtual void didStartLoading(); |
| 142 virtual void didStopLoading(); | 143 virtual void didStopLoading(); |
| 143 virtual bool shouldBeginEditing(const WebKit::WebRange&); | 144 virtual bool shouldBeginEditing(const WebKit::WebRange&); |
| 144 virtual bool shouldEndEditing(const WebKit::WebRange&); | 145 virtual bool shouldEndEditing(const WebKit::WebRange&); |
| 145 virtual bool shouldInsertNode(const WebKit::WebNode&, const WebKit::WebRange
&, WebKit::WebEditingAction); | 146 virtual bool shouldInsertNode(const WebKit::WebNode&, const WebKit::WebRange
&, WebKit::WebEditingAction); |
| 146 virtual bool shouldInsertText(const WebKit::WebString&, const WebKit::WebRan
ge&, WebKit::WebEditingAction); | 147 virtual bool shouldInsertText(const WebKit::WebString&, const WebKit::WebRan
ge&, WebKit::WebEditingAction); |
| 147 virtual bool shouldChangeSelectedRange(const WebKit::WebRange& from, const W
ebKit::WebRange& to, WebKit::WebTextAffinity, bool stillSelecting); | 148 virtual bool shouldChangeSelectedRange(const WebKit::WebRange& from, const W
ebKit::WebRange& to, WebKit::WebTextAffinity, bool stillSelecting); |
| 148 virtual bool shouldDeleteRange(const WebKit::WebRange&); | 149 virtual bool shouldDeleteRange(const WebKit::WebRange&); |
| 149 virtual bool shouldApplyStyle(const WebKit::WebString& style, const WebKit::
WebRange&); | 150 virtual bool shouldApplyStyle(const WebKit::WebString& style, const WebKit::
WebRange&); |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 OwnPtr<TestNavigationController> m_navigationController; | 282 OwnPtr<TestNavigationController> m_navigationController; |
| 282 | 283 |
| 283 WebTestRunner::WebTaskList m_taskList; | 284 WebTestRunner::WebTaskList m_taskList; |
| 284 Vector<WebKit::WebWidget*> m_popupmenus; | 285 Vector<WebKit::WebWidget*> m_popupmenus; |
| 285 | 286 |
| 286 OwnPtr<webkit_support::DRTLayerTreeViewClient> m_layerTreeViewClient; | 287 OwnPtr<webkit_support::DRTLayerTreeViewClient> m_layerTreeViewClient; |
| 287 OwnPtr<WebKit::WebLayerTreeView> m_layerTreeView; | 288 OwnPtr<WebKit::WebLayerTreeView> m_layerTreeView; |
| 288 }; | 289 }; |
| 289 | 290 |
| 290 #endif // WebViewHost_h | 291 #endif // WebViewHost_h |
| OLD | NEW |