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

Unified Diff: content/shell/renderer/test_runner/test_runner.h

Issue 297273003: test_runner: Migrate WebTestRunner to our Chromium C++ style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: content/shell/renderer/test_runner/test_runner.h
diff --git a/content/shell/renderer/test_runner/test_runner.h b/content/shell/renderer/test_runner/test_runner.h
index b34b283e55785f560823997f1fd8472f4b505355..e5d599476e2e4e803a039235219b07105956dd9d 100644
--- a/content/shell/renderer/test_runner/test_runner.h
+++ b/content/shell/renderer/test_runner/test_runner.h
@@ -12,7 +12,7 @@
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/shell/renderer/test_runner/WebTask.h"
-#include "content/shell/renderer/test_runner/WebTestRunner.h"
+#include "content/shell/renderer/test_runner/web_test_runner.h"
#include "v8/include/v8.h"
namespace blink {
@@ -61,12 +61,12 @@ class TestRunner : public WebTestRunner,
void InvokeCallback(scoped_ptr<InvokeCallbackTask> callback);
// WebTestRunner implementation.
- virtual bool shouldGeneratePixelResults() OVERRIDE;
- virtual bool shouldDumpAsAudio() const OVERRIDE;
- virtual void getAudioData(std::vector<unsigned char>* bufferView) const
- OVERRIDE;
- virtual bool shouldDumpBackForwardList() const OVERRIDE;
- virtual blink::WebPermissionClient* webPermissions() const OVERRIDE;
+ virtual bool ShouldGeneratePixelResults() OVERRIDE;
+ virtual bool ShouldDumpAsAudio() const OVERRIDE;
+ virtual void GetAudioData(
+ std::vector<unsigned char>* buffer_view) const OVERRIDE;
+ virtual bool ShouldDumpBackForwardList() const OVERRIDE;
+ virtual blink::WebPermissionClient* GetWebPermissions() const OVERRIDE;
// Methods used by WebTestProxyBase.
bool shouldDumpSelectionRect() const;
« no previous file with comments | « content/shell/renderer/test_runner/WebTestRunner.h ('k') | content/shell/renderer/test_runner/test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698