https://github.com/kiwibrowser/android
Raw File
Tip revision: 4caf9f65856f91f67336e9f4bce9cb242a35e9ce authored by Arnaud on 21 June 2018, 20:45:12 UTC
Preparing release for Kumquat
Tip revision: 4caf9f6
timer.cc
// Copyright 2016 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 "pdf/timer.h"

#include "ppapi/cpp/core.h"
#include "ppapi/cpp/module.h"

namespace chrome_pdf {

Timer::Timer(base::TimeDelta delay) : delay_(delay), callback_factory_(this) {
  PostCallback();
}

Timer::~Timer() = default;

void Timer::PostCallback() {
  pp::CompletionCallback callback =
      callback_factory_.NewCallback(&Timer::TimerProc);
  pp::Module::Get()->core()->CallOnMainThread(delay_.InMilliseconds(), callback,
                                              0);
}

void Timer::TimerProc(int32_t /*result*/) {
  PostCallback();
  OnTimer();
}

}  // namespace chrome_pdf
back to top