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

Side by Side Diff: webkit/glue/webkitclient_impl.h

Issue 261035: Adds support for the <keygen> tag for client certificate enrollment under Lin... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 2 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 (c) 2009 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 #ifndef WEBKIT_CLIENT_IMPL_H_ 5 #ifndef WEBKIT_CLIENT_IMPL_H_
6 #define WEBKIT_CLIENT_IMPL_H_ 6 #define WEBKIT_CLIENT_IMPL_H_
7 7
8 #include "base/platform_file.h" 8 #include "base/platform_file.h"
9 #include "base/timer.h" 9 #include "base/timer.h"
10 #include "webkit/api/public/WebKitClient.h" 10 #include "webkit/api/public/WebKitClient.h"
11 #if defined(OS_WIN) 11 #if defined(OS_WIN)
12 #include "webkit/glue/webthemeengine_impl_win.h" 12 #include "webkit/glue/webthemeengine_impl_win.h"
13 #endif 13 #endif
14 14
15 class MessageLoop; 15 class MessageLoop;
16 16
17 namespace webkit_glue { 17 namespace webkit_glue {
18 18
19 class WebKitClientImpl : public WebKit::WebKitClient { 19 class WebKitClientImpl : public WebKit::WebKitClient {
20 public: 20 public:
21 WebKitClientImpl(); 21 WebKitClientImpl();
22 22
23 // WebKitClient methods (partial implementation): 23 // WebKitClient methods (partial implementation):
24 virtual WebKit::WebThemeEngine* themeEngine(); 24 virtual WebKit::WebThemeEngine* themeEngine();
25 virtual WebKit::WebURLLoader* createURLLoader(); 25 virtual WebKit::WebURLLoader* createURLLoader();
26 virtual void getPluginList(bool refresh, WebKit::WebPluginListBuilder*); 26 virtual void getPluginList(bool refresh, WebKit::WebPluginListBuilder*);
27 virtual void decrementStatsCounter(const char* name); 27 virtual void decrementStatsCounter(const char* name);
28 virtual void incrementStatsCounter(const char* name); 28 virtual void incrementStatsCounter(const char* name);
29 virtual WebKit::WebString genKeyAndSignChallenge(unsigned key_size_index,
30 const WebKit::WebString& challenge, const WebKit::WebURL& url);
29 virtual void traceEventBegin(const char* name, void* id, const char* extra); 31 virtual void traceEventBegin(const char* name, void* id, const char* extra);
30 virtual void traceEventEnd(const char* name, void* id, const char* extra); 32 virtual void traceEventEnd(const char* name, void* id, const char* extra);
31 virtual WebKit::WebData loadResource(const char* name); 33 virtual WebKit::WebData loadResource(const char* name);
32 virtual WebKit::WebString queryLocalizedString( 34 virtual WebKit::WebString queryLocalizedString(
33 WebKit::WebLocalizedString::Name name); 35 WebKit::WebLocalizedString::Name name);
34 virtual WebKit::WebString queryLocalizedString( 36 virtual WebKit::WebString queryLocalizedString(
35 WebKit::WebLocalizedString::Name name, int numeric_value); 37 WebKit::WebLocalizedString::Name name, int numeric_value);
36 virtual double currentTime(); 38 virtual double currentTime();
37 virtual void setSharedTimerFiredFunction(void (*func)()); 39 virtual void setSharedTimerFiredFunction(void (*func)());
38 virtual void setSharedTimerFireTime(double fireTime); 40 virtual void setSharedTimerFireTime(double fireTime);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 void (*shared_timer_func_)(); 104 void (*shared_timer_func_)();
103 105
104 #if defined(OS_WIN) 106 #if defined(OS_WIN)
105 WebThemeEngineImpl theme_engine_; 107 WebThemeEngineImpl theme_engine_;
106 #endif 108 #endif
107 }; 109 };
108 110
109 } // namespace webkit_glue 111 } // namespace webkit_glue
110 112
111 #endif // WEBKIT_CLIENT_IMPL_H_ 113 #endif // WEBKIT_CLIENT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698