Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: Tools/DumpRenderTree/chromium/WebViewHost.h

Issue 15535005: Added window.testRunner.isChooserShown() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved things WebTestProxy Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Tools/DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Tools/DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698