blob: e3c5aefefb7cd85363f3a21b49eb2b31e5bb9e3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Copyright (c) 2009 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.
#ifndef WEBKIT_CLIENT_IMPL_H_
#define WEBKIT_CLIENT_IMPL_H_
#include "WebKitClient.h"
#include "base/scoped_ptr.h"
#include "base/timer.h"
#include "webkit/glue/webclipboard_impl.h"
class MessageLoop;
namespace webkit_glue {
class WebKitClientImpl : public WebKit::WebKitClient {
public:
WebKitClientImpl();
// WebKitClient methods (partial implementation):
virtual WebKit::WebClipboard* clipboard();
virtual WebKit::WebCString loadResource(const char* name);
virtual double currentTime();
virtual void setSharedTimerFiredFunction(void (*func)());
virtual void setSharedTimerFireTime(double fireTime);
virtual void stopSharedTimer();
virtual void callOnMainThread(void (*func)());
private:
void DoTimeout() {
if (shared_timer_func_)
shared_timer_func_();
}
WebClipboardImpl clipboard_;
MessageLoop* main_loop_;
base::OneShotTimer<WebKitClientImpl> shared_timer_;
void (*shared_timer_func_)();
};
} // namespace webkit_glue
#endif // WEBKIT_CLIENT_IMPL_H_
|