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

Side by Side Diff: public/testing/WebTestProxy.h

Issue 18822004: Extension Error Piping - Blink: WebKit Side (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 5 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
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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 virtual void didFailResourceLoad(WebKit::WebFrame* frame, unsigned identifie r, const WebKit::WebURLError& error) 568 virtual void didFailResourceLoad(WebKit::WebFrame* frame, unsigned identifie r, const WebKit::WebURLError& error)
569 { 569 {
570 WebTestProxyBase::didFailResourceLoad(frame, identifier, error); 570 WebTestProxyBase::didFailResourceLoad(frame, identifier, error);
571 Base::didFailResourceLoad(frame, identifier, error); 571 Base::didFailResourceLoad(frame, identifier, error);
572 } 572 }
573 virtual void unableToImplementPolicyWithError(WebKit::WebFrame* frame, const WebKit::WebURLError& error) 573 virtual void unableToImplementPolicyWithError(WebKit::WebFrame* frame, const WebKit::WebURLError& error)
574 { 574 {
575 WebTestProxyBase::unableToImplementPolicyWithError(frame, error); 575 WebTestProxyBase::unableToImplementPolicyWithError(frame, error);
576 Base::unableToImplementPolicyWithError(frame, error); 576 Base::unableToImplementPolicyWithError(frame, error);
577 } 577 }
578 virtual void didAddMessageToConsole(const WebKit::WebConsoleMessage& message , const WebKit::WebString& sourceName, unsigned sourceLine) 578 virtual void didAddMessageToConsole(const WebKit::WebConsoleMessage& message , const WebKit::WebString& sourceName, unsigned sourceLine, const WebKit::WebStr ing& details)
579 { 579 {
580 WebTestProxyBase::didAddMessageToConsole(message, sourceName, sourceLine ); 580 WebTestProxyBase::didAddMessageToConsole(message, sourceName, sourceLine );
581 Base::didAddMessageToConsole(message, sourceName, sourceLine); 581 Base::didAddMessageToConsole(message, sourceName, sourceLine, details);
582 } 582 }
583 virtual void runModalAlertDialog(WebKit::WebFrame* frame, const WebKit::WebS tring& message) 583 virtual void runModalAlertDialog(WebKit::WebFrame* frame, const WebKit::WebS tring& message)
584 { 584 {
585 WebTestProxyBase::runModalAlertDialog(frame, message); 585 WebTestProxyBase::runModalAlertDialog(frame, message);
586 Base::runModalAlertDialog(frame, message); 586 Base::runModalAlertDialog(frame, message);
587 } 587 }
588 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, const WebKit::We bString& message) 588 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, const WebKit::We bString& message)
589 { 589 {
590 WebTestProxyBase::runModalConfirmDialog(frame, message); 590 WebTestProxyBase::runModalConfirmDialog(frame, message);
591 return Base::runModalConfirmDialog(frame, message); 591 return Base::runModalConfirmDialog(frame, message);
(...skipping 22 matching lines...) Expand all
614 } 614 }
615 virtual WebKit::WebColorChooser* createColorChooser(WebKit::WebColorChooserC lient* client, const WebKit::WebColor& color) 615 virtual WebKit::WebColorChooser* createColorChooser(WebKit::WebColorChooserC lient* client, const WebKit::WebColor& color)
616 { 616 {
617 return WebTestProxyBase::createColorChooser(client, color); 617 return WebTestProxyBase::createColorChooser(client, color);
618 } 618 }
619 }; 619 };
620 620
621 } 621 }
622 622
623 #endif // WebTestProxy_h 623 #endif // WebTestProxy_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698