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

Unified Diff: content/shell/renderer/test_runner/MockColorChooser.cpp

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 side-by-side diff with in-line comments
Download patch
Index: content/shell/renderer/test_runner/MockColorChooser.cpp
diff --git a/content/shell/renderer/test_runner/MockColorChooser.cpp b/content/shell/renderer/test_runner/MockColorChooser.cpp
deleted file mode 100644
index 67ee88076b1efba3fb150e3252e49731eb4455bd..0000000000000000000000000000000000000000
--- a/content/shell/renderer/test_runner/MockColorChooser.cpp
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2013 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.
-
-#include "content/shell/renderer/test_runner/MockColorChooser.h"
-
-#include "content/shell/renderer/test_runner/WebTestDelegate.h"
-#include "content/shell/renderer/test_runner/web_test_proxy.h"
-
-using namespace blink;
-
-namespace content {
-
-namespace {
-class HostMethodTask : public WebMethodTask<MockColorChooser> {
-public:
- typedef void (MockColorChooser::*CallbackMethodType)();
- HostMethodTask(MockColorChooser* object, CallbackMethodType callback)
- : WebMethodTask<MockColorChooser>(object)
- , m_callback(callback)
- { }
-
- virtual void runIfValid() OVERRIDE { (m_object->*m_callback)(); }
-
-private:
- CallbackMethodType m_callback;
-};
-}
-
-MockColorChooser::MockColorChooser(blink::WebColorChooserClient* client, WebTestDelegate* delegate, WebTestProxyBase* proxy)
- : m_client(client)
- , m_delegate(delegate)
- , m_proxy(proxy)
-{
- m_proxy->DidOpenChooser();
-}
-
-MockColorChooser::~MockColorChooser()
-{
- m_proxy->DidCloseChooser();
-}
-
-void MockColorChooser::setSelectedColor(const blink::WebColor)
-{
-}
-
-void MockColorChooser::endChooser()
-{
- m_delegate->postDelayedTask(new HostMethodTask(this, &MockColorChooser::invokeDidEndChooser), 0);
-}
-
-void MockColorChooser::invokeDidEndChooser()
-{
- m_client->didEndChooser();
-}
-
-} // namespace content
« no previous file with comments | « content/shell/renderer/test_runner/MockColorChooser.h ('k') | content/shell/renderer/test_runner/mock_color_chooser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698