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

Side by Side Diff: content/shell/renderer/layout_test/blink_test_runner.h

Issue 1656823002: Add layout tests for ServiceWorker's notificationclose event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactored data reflection tests + nits Created 4 years, 10 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ 5 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_
6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 void ClearDevToolsLocalStorage() override; 92 void ClearDevToolsLocalStorage() override;
93 void ShowDevTools(const std::string& settings, 93 void ShowDevTools(const std::string& settings,
94 const std::string& frontend_url) override; 94 const std::string& frontend_url) override;
95 void CloseDevTools() override; 95 void CloseDevTools() override;
96 void EvaluateInWebInspector(long call_id, const std::string& script) override; 96 void EvaluateInWebInspector(long call_id, const std::string& script) override;
97 std::string EvaluateInWebInspectorOverlay(const std::string& script) override; 97 std::string EvaluateInWebInspectorOverlay(const std::string& script) override;
98 void ClearAllDatabases() override; 98 void ClearAllDatabases() override;
99 void SetDatabaseQuota(int quota) override; 99 void SetDatabaseQuota(int quota) override;
100 void SimulateWebNotificationClick(const std::string& title, 100 void SimulateWebNotificationClick(const std::string& title,
101 int action_index) override; 101 int action_index) override;
102 void SimulateWebNotificationClose(const std::string& title,
103 bool by_user) override;
102 void SetDeviceScaleFactor(float factor) override; 104 void SetDeviceScaleFactor(float factor) override;
103 void SetDeviceColorProfile(const std::string& name) override; 105 void SetDeviceColorProfile(const std::string& name) override;
104 void EnableUseZoomForDSF() override; 106 void EnableUseZoomForDSF() override;
105 void SetBluetoothMockDataSet(const std::string& name) override; 107 void SetBluetoothMockDataSet(const std::string& name) override;
106 void SetBluetoothManualChooser() override; 108 void SetBluetoothManualChooser() override;
107 void GetBluetoothManualChooserEvents( 109 void GetBluetoothManualChooserEvents(
108 const base::Callback<void(const std::vector<std::string>&)>& callback) 110 const base::Callback<void(const std::vector<std::string>&)>& callback)
109 override; 111 override;
110 void SendBluetoothManualChooserEvent(const std::string& event, 112 void SendBluetoothManualChooserEvent(const std::string& event,
111 const std::string& argument) override; 113 const std::string& argument) override;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 bool focus_on_next_commit_; 206 bool focus_on_next_commit_;
205 207
206 scoped_ptr<LeakDetector> leak_detector_; 208 scoped_ptr<LeakDetector> leak_detector_;
207 209
208 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner); 210 DISALLOW_COPY_AND_ASSIGN(BlinkTestRunner);
209 }; 211 };
210 212
211 } // namespace content 213 } // namespace content
212 214
213 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_ 215 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_BLINK_TEST_RUNNER_H_
OLDNEW
« no previous file with comments | « content/shell/common/layout_test/layout_test_messages.h ('k') | content/shell/renderer/layout_test/blink_test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698