blob: 6947bd39f1b450c7436a2ac1d3284307e42c8c4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_
#define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_
#include "base/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "content/public/renderer/render_view_observer.h"
#include "content/shell/shell_webpreferences.h"
#include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h"
class SkCanvas;
namespace WebKit {
struct WebRect;
}
namespace WebTestRunner {
class WebTestProxyBase;
}
namespace content {
// This is the renderer side of the webkit test runner.
class WebKitTestRunner : public RenderViewObserver,
public WebTestRunner::WebTestDelegate {
public:
explicit WebKitTestRunner(RenderView* render_view);
virtual ~WebKitTestRunner();
// RenderViewObserver implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
virtual void DidClearWindowObject(WebKit::WebFrame* frame) OVERRIDE;
virtual void DidFinishLoad(WebKit::WebFrame* frame) OVERRIDE;
virtual void DidRequestShowContextMenu(
WebKit::WebFrame* frame,
const WebKit::WebContextMenuData& data) OVERRIDE;
// WebTestDelegate implementation.
virtual void clearContextMenuData();
virtual void clearEditCommand();
virtual void fillSpellingSuggestionList(
const WebKit::WebString& word,
WebKit::WebVector<WebKit::WebString>* suggestions);
virtual void setEditCommand(const std::string& name,
const std::string& value);
virtual WebKit::WebContextMenuData* lastContextMenuData() const;
virtual void setGamepadData(const WebKit::WebGamepads& gamepads);
virtual void printMessage(const std::string& message);
virtual void postTask(WebTestRunner::WebTask* task);
virtual void postDelayedTask(WebTestRunner::WebTask* task,
long long ms);
virtual WebKit::WebString registerIsolatedFileSystem(
const WebKit::WebVector<WebKit::WebString>& absolute_filenames);
virtual long long getCurrentTimeInMillisecond();
virtual WebKit::WebString getAbsoluteWebStringFromUTF8Path(
const std::string& utf8_path);
virtual WebKit::WebURL localFileToDataURL(const WebKit::WebURL& file_url);
virtual WebKit::WebURL rewriteLayoutTestsURL(const std::string& utf8_url);
virtual WebTestRunner::WebPreferences* preferences();
virtual void applyPreferences();
void Reset();
void Display();
void SetXSSAuditorEnabled(bool enabled);
void NotifyDone();
void DumpAsText();
void DumpChildFramesAsText();
void SetPrinting();
void SetShouldStayOnPageAfterHandlingBeforeUnload(bool should_stay_on_page);
void WaitUntilDone();
void CanOpenWindows();
void ShowWebInspector();
void CloseWebInspector();
void EvaluateInWebInspector(int32_t call_id, const std::string& script);
void ExecCommand(const std::string& command, const std::string& value);
void NotImplemented(const std::string& object, const std::string& method);
void set_proxy(WebTestRunner::WebTestProxyBase* proxy) { proxy_ = proxy; }
private:
// Message handlers.
void OnCaptureTextDump(bool as_text, bool printing, bool recursive);
void OnCaptureImageDump(const std::string& expected_pixel_hash);
void OnSetCurrentWorkingDirectory(const FilePath& current_working_directory);
SkCanvas* GetCanvas();
void PaintRect(const WebKit::WebRect& rect);
void PaintInvalidatedRegion();
void DisplayRepaintMask();
scoped_ptr<SkCanvas> canvas_;
scoped_ptr<WebKit::WebContextMenuData> last_context_menu_data_;
FilePath current_working_directory_;
WebTestRunner::WebTestProxyBase* proxy_;
ShellWebPreferences prefs_;
DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner);
};
} // namespace content
#endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_
|