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*, WebTestProxyBase*); 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(); mutable_task_list()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_ 43