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

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

Issue 404373002: test_runner: Migrate MockColorChooser to Chromium C++ style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/renderer/test_runner/MockColorChooser.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_
7
8 #include "base/basictypes.h"
9 #include "content/shell/renderer/test_runner/TestCommon.h"
10 #include "content/shell/renderer/test_runner/WebTask.h"
11 #include "third_party/WebKit/public/web/WebColorChooser.h"
12 #include "third_party/WebKit/public/web/WebColorChooserClient.h"
13
14 namespace content {
15
16 class WebTestDelegate;
17 class WebTestProxyBase;
18
19 class MockColorChooser : public blink::WebColorChooser {
20 public:
21 MockColorChooser(blink::WebColorChooserClient*, WebTestDelegate*, WebTestPro xyBase*);
22 virtual ~MockColorChooser();
23
24 // blink::WebColorChooser implementation.
25 virtual void setSelectedColor(const blink::WebColor) OVERRIDE;
26 virtual void endChooser() OVERRIDE;
27
28 void invokeDidEndChooser();
29 WebTaskList* mutable_task_list() { return &m_taskList; }
30
31 private:
32 blink::WebColorChooserClient* m_client;
33 WebTestDelegate* m_delegate;
34 WebTestProxyBase* m_proxy;
35 WebTaskList m_taskList;
36
37 DISALLOW_COPY_AND_ASSIGN(MockColorChooser);
38 };
39
40 } // namespace content
41
42 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/renderer/test_runner/MockColorChooser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698