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

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

Issue 279403006: Update WebFrameTestProxy and WebTestProxy to mostly follow Chrome style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: REBASE 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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_TEST_RUNNER_MOCKCOLORCHOOSER_H_ 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_ 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "content/shell/renderer/test_runner/TestCommon.h" 9 #include "content/shell/renderer/test_runner/TestCommon.h"
10 #include "content/shell/renderer/test_runner/WebTask.h" 10 #include "content/shell/renderer/test_runner/WebTask.h"
11 #include "third_party/WebKit/public/web/WebColorChooser.h" 11 #include "third_party/WebKit/public/web/WebColorChooser.h"
12 #include "third_party/WebKit/public/web/WebColorChooserClient.h" 12 #include "third_party/WebKit/public/web/WebColorChooserClient.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 class WebTestDelegate; 16 class WebTestDelegate;
17 class WebTestProxyBase; 17 class WebTestProxyBase;
18 18
19 class MockColorChooser : public blink::WebColorChooser { 19 class MockColorChooser : public blink::WebColorChooser {
20 public: 20 public:
21 MockColorChooser(blink::WebColorChooserClient*, WebTestDelegate*, WebTestPro xyBase*); 21 MockColorChooser(blink::WebColorChooserClient*, WebTestDelegate*, WebTestPro xyBase*);
22 virtual ~MockColorChooser(); 22 virtual ~MockColorChooser();
23 23
24 // blink::WebColorChooser implementation. 24 // blink::WebColorChooser implementation.
25 virtual void setSelectedColor(const blink::WebColor) OVERRIDE; 25 virtual void setSelectedColor(const blink::WebColor) OVERRIDE;
26 virtual void endChooser() OVERRIDE; 26 virtual void endChooser() OVERRIDE;
27 27
28 void invokeDidEndChooser(); 28 void invokeDidEndChooser();
29 WebTaskList* taskList() { return &m_taskList; } 29 WebTaskList* mutable_task_list() { return &m_taskList; }
30 30
31 private: 31 private:
32 blink::WebColorChooserClient* m_client; 32 blink::WebColorChooserClient* m_client;
33 WebTestDelegate* m_delegate; 33 WebTestDelegate* m_delegate;
34 WebTestProxyBase* m_proxy; 34 WebTestProxyBase* m_proxy;
35 WebTaskList m_taskList; 35 WebTaskList m_taskList;
36 36
37 DISALLOW_COPY_AND_ASSIGN(MockColorChooser); 37 DISALLOW_COPY_AND_ASSIGN(MockColorChooser);
38 }; 38 };
39 39
40 } // namespace content 40 } // namespace content
41 41
42 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_ 42 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_MOCKCOLORCHOOSER_H_
OLDNEW
« no previous file with comments | « content/shell/renderer/shell_content_renderer_client.cc ('k') | content/shell/renderer/test_runner/MockColorChooser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698