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

Side by Side Diff: content/shell/renderer/test_runner/web_test_proxy.h

Issue 646653005: Delete unused method for getting push client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 1 month 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
« no previous file with comments | « content/renderer/render_view_impl.cc ('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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 392
393 WebTestProxyBase::ShowValidationMessage( 393 WebTestProxyBase::ShowValidationMessage(
394 wrapped_main_text, wrapped_sub_text); 394 wrapped_main_text, wrapped_sub_text);
395 } 395 }
396 virtual void postSpellCheckEvent(const blink::WebString& event_name) { 396 virtual void postSpellCheckEvent(const blink::WebString& event_name) {
397 WebTestProxyBase::PostSpellCheckEvent(event_name); 397 WebTestProxyBase::PostSpellCheckEvent(event_name);
398 } 398 }
399 virtual blink::WebString acceptLanguages() { 399 virtual blink::WebString acceptLanguages() {
400 return WebTestProxyBase::acceptLanguages(); 400 return WebTestProxyBase::acceptLanguages();
401 } 401 }
402 virtual blink::WebPushClient* webPushClient() {
403 return WebTestProxyBase::GetWebPushClient();
404 }
405 402
406 private: 403 private:
407 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); 404 DISALLOW_COPY_AND_ASSIGN(WebTestProxy);
408 }; 405 };
409 406
410 } // namespace content 407 } // namespace content
411 408
412 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ 409 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698