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

Side by Side Diff: ppapi/cpp/dev/message_loop_dev.cc

Issue 11364188: PPAPI: Take PPB_MessageLoop out of Dev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 1 month 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
« no previous file with comments | « ppapi/cpp/dev/message_loop_dev.h ('k') | ppapi/cpp/message_loop.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 #include "ppapi/cpp/dev/message_loop_dev.h"
6
7 #include "ppapi/c/dev/ppb_message_loop_dev.h"
8 #include "ppapi/c/pp_errors.h"
9 #include "ppapi/cpp/completion_callback.h"
10 #include "ppapi/cpp/instance_handle.h"
11 #include "ppapi/cpp/module_impl.h"
12
13 namespace pp {
14
15 namespace {
16
17 template <> const char* interface_name<PPB_MessageLoop_Dev>() {
18 return PPB_MESSAGELOOP_DEV_INTERFACE_0_1;
19 }
20
21 } // namespace
22
23 MessageLoop_Dev::MessageLoop_Dev() : Resource() {
24 }
25
26 MessageLoop_Dev::MessageLoop_Dev(const InstanceHandle& instance) : Resource() {
27 if (has_interface<PPB_MessageLoop_Dev>()) {
28 PassRefFromConstructor(get_interface<PPB_MessageLoop_Dev>()->Create(
29 instance.pp_instance()));
30 }
31 }
32
33 MessageLoop_Dev::MessageLoop_Dev(const MessageLoop_Dev& other)
34 : Resource(other) {
35 }
36
37 MessageLoop_Dev::MessageLoop_Dev(PP_Resource pp_message_loop)
38 : Resource(pp_message_loop) {
39 }
40
41 // static
42 MessageLoop_Dev MessageLoop_Dev::GetForMainThread() {
43 if (!has_interface<PPB_MessageLoop_Dev>())
44 return MessageLoop_Dev();
45 return MessageLoop_Dev(
46 get_interface<PPB_MessageLoop_Dev>()->GetForMainThread());
47 }
48
49 // static
50 MessageLoop_Dev MessageLoop_Dev::GetCurrent() {
51 if (!has_interface<PPB_MessageLoop_Dev>())
52 return MessageLoop_Dev();
53 return MessageLoop_Dev(
54 get_interface<PPB_MessageLoop_Dev>()->GetCurrent());
55 }
56
57 int32_t MessageLoop_Dev::AttachToCurrentThread() {
58 if (!has_interface<PPB_MessageLoop_Dev>())
59 return PP_ERROR_NOINTERFACE;
60 return get_interface<PPB_MessageLoop_Dev>()->AttachToCurrentThread(
61 pp_resource());
62 }
63
64 int32_t MessageLoop_Dev::Run() {
65 if (!has_interface<PPB_MessageLoop_Dev>())
66 return PP_ERROR_NOINTERFACE;
67 return get_interface<PPB_MessageLoop_Dev>()->Run(pp_resource());
68 }
69
70 int32_t MessageLoop_Dev::PostWork(const CompletionCallback& callback,
71 int64_t delay_ms) {
72 if (!has_interface<PPB_MessageLoop_Dev>())
73 return PP_ERROR_NOINTERFACE;
74 return get_interface<PPB_MessageLoop_Dev>()->PostWork(
75 pp_resource(),
76 callback.pp_completion_callback(),
77 delay_ms);
78 }
79
80 int32_t MessageLoop_Dev::PostQuit(bool should_destroy) {
81 if (!has_interface<PPB_MessageLoop_Dev>())
82 return PP_ERROR_NOINTERFACE;
83 return get_interface<PPB_MessageLoop_Dev>()->PostQuit(
84 pp_resource(), PP_FromBool(should_destroy));
85 }
86
87 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/cpp/dev/message_loop_dev.h ('k') | ppapi/cpp/message_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698