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

Unified Diff: trunk/src/ppapi/tests/extensions/background_keepalive/background.cc

Issue 118533004: Revert 242061 "Test Keeping NaCl plugins used in app background ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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
Index: trunk/src/ppapi/tests/extensions/background_keepalive/background.cc
===================================================================
--- trunk/src/ppapi/tests/extensions/background_keepalive/background.cc (revision 242118)
+++ trunk/src/ppapi/tests/extensions/background_keepalive/background.cc (working copy)
@@ -1,63 +0,0 @@
-// Copyright 2013 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 <cstdio>
-#include <string>
-
-#include "ppapi/cpp/instance.h"
-#include "ppapi/cpp/message_loop.h"
-#include "ppapi/cpp/module.h"
-#include "ppapi/cpp/var.h"
-#include "ppapi/utility/completion_callback_factory.h"
-
-class Instance : public pp::Instance {
- public:
- explicit Instance(PP_Instance instance) :
- pp::Instance(instance),
- callback_factory_(this),
- delay_milliseconds_(10),
- active_(true) {
- DoSomething(PP_OK);
- }
- virtual ~Instance() {}
-
- virtual void HandleMessage(const pp::Var& message_var) {
- std::string message_string = message_var.AsString();
- if (message_string == "be idle") {
- active_ = false;
- } else {
- PostMessage("Unhandled control message.");
- }
- }
-
- void DoSomething(int32_t result) {
- if (active_) {
- pp::MessageLoop loop = pp::MessageLoop::GetCurrent();
- pp::CompletionCallback c = callback_factory_.NewCallback(
- &Instance::DoSomething);
- loop.PostWork(c, delay_milliseconds_);
- }
- }
-
- pp::CompletionCallbackFactory<Instance> callback_factory_;
- int delay_milliseconds_;
- bool active_;
-};
-
-class Module : public pp::Module {
- public:
- Module() : pp::Module() {}
- virtual ~Module() {}
-
- virtual pp::Instance* CreateInstance(PP_Instance instance) {
- return new Instance(instance);
- }
-};
-
-namespace pp {
-Module* CreateModule() {
- return new ::Module();
-}
-} // namespace pp
-
« no previous file with comments | « trunk/src/ppapi/shared_impl/ppapi_switches.cc ('k') | trunk/src/ppapi/tests/extensions/background_keepalive/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698