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

Unified Diff: ppapi/examples/threading/threading.cc

Issue 9290040: Revert 119198 - First pass at implementing the MessageLoop interface. This includes a simple (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/ppapi_proxy.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/examples/threading/threading.cc
===================================================================
--- ppapi/examples/threading/threading.cc (revision 119199)
+++ ppapi/examples/threading/threading.cc (working copy)
@@ -1,60 +0,0 @@
-// Copyright (c) 2012 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 "ppapi/c/pp_errors.h"
-#include "ppapi/cpp/input_event.h"
-#include "ppapi/cpp/instance.h"
-#include "ppapi/cpp/module.h"
-#include "ppapi/utility/completion_callback_factory.h"
-#include "ppapi/utility/threading/simple_thread.h"
-
-class MyInstance : public pp::Instance {
- public:
- MyInstance(PP_Instance instance) : pp::Instance(instance) {
- thread_ = new pp::SimpleThread(this);
- factory_.Initialize(this);
- }
-
- virtual ~MyInstance() {
- delete thread_;
- }
-
- virtual bool Init(uint32_t argc, const char* argn[], const char* argv[]) {
- thread_->Start();
- thread_->message_loop().PostWork(
- factory_.NewCallback(&MyInstance::CallOnBackground));
- return true;
- }
-
- virtual void DidChangeView(const pp::View& view) {
- }
-
- private:
- void CallOnBackground(int32_t result) {
- }
-
- pp::CompletionCallbackFactory<MyInstance> factory_;
-
- pp::SimpleThread* thread_;
-};
-
-
-class MyModule : public pp::Module {
- public:
- MyModule() : pp::Module() {}
- virtual ~MyModule() {}
-
- virtual pp::Instance* CreateInstance(PP_Instance instance) {
- return new MyInstance(instance);
- }
-};
-
-namespace pp {
-
-// Factory function for your specialization of the Module object.
-Module* CreateModule() {
- return new MyModule();
-}
-
-} // namespace pp
« no previous file with comments | « no previous file | ppapi/ppapi_proxy.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698