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

Side by Side Diff: content/renderer/renderer_webcolorchooser_impl.h

Issue 9203001: Implement input type=color UI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: renamed method Created 8 years, 11 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
(Empty)
1 // Copyright (c) 2010 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_RENDERER_RENDERER_WEBCOLORCHOOSER_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_WEBCOLORCHOOSER_IMPL_H_
7 #pragma once
8
9 #include "base/memory/scoped_ptr.h"
10 #include "content/public/renderer/render_view_observer.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorChooser.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorChooserClient .h"
13
14 class RenderViewImpl;
15
16 class RendererWebColorChooserImpl : public WebKit::WebColorChooser,
17 public content::RenderViewObserver {
18 public:
19 explicit RendererWebColorChooserImpl(RenderViewImpl* sender,
20 WebKit::WebColorChooserClient*);
21 virtual ~RendererWebColorChooserImpl();
22
23 virtual void setSelectedColor(const WebKit::WebColor);
24 virtual void endChooser();
25
26 virtual WebKit::WebColorChooserClient* client();
27
28 private:
29 // RenderView::Observer implementation.
30 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
31
32 void OnDidChooseColorResponse(const WebKit::WebColor color);
33 void OnDidEndColorChooser();
34
35 scoped_ptr< WebKit::WebColorChooserClient> client_;
36
37 DISALLOW_COPY_AND_ASSIGN(RendererWebColorChooserImpl);
38 };
39
40 #endif // CONTENT_RENDERER_RENDERER_WEBCOLORCHOOSER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698