root/ppapi/shared_impl/test_globals.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. callback_tracker_
  2. callback_tracker_
  3. GetResourceTracker
  4. GetVarTracker
  5. GetCallbackTrackerForInstance
  6. GetInstanceAPI
  7. GetResourceCreationAPI
  8. GetModuleForInstance
  9. GetCmdLine
  10. PreCacheFontForFlash
  11. LogWithSource
  12. BroadcastLogWithSource
  13. GetCurrentMessageLoop
  14. GetFileTaskRunner
  15. IsHostGlobals

// 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/shared_impl/test_globals.h"

namespace ppapi {

TestGlobals::TestGlobals()
    : ppapi::PpapiGlobals(),
      resource_tracker_(ResourceTracker::THREAD_SAFE),
      callback_tracker_(new CallbackTracker) {}

TestGlobals::TestGlobals(PpapiGlobals::PerThreadForTest per_thread_for_test)
    : ppapi::PpapiGlobals(per_thread_for_test),
      resource_tracker_(ResourceTracker::THREAD_SAFE),
      callback_tracker_(new CallbackTracker) {}

TestGlobals::~TestGlobals() {}

ResourceTracker* TestGlobals::GetResourceTracker() {
  return &resource_tracker_;
}

VarTracker* TestGlobals::GetVarTracker() { return &var_tracker_; }

CallbackTracker* TestGlobals::GetCallbackTrackerForInstance(
    PP_Instance instance) {
  return callback_tracker_.get();
}

thunk::PPB_Instance_API* TestGlobals::GetInstanceAPI(PP_Instance instance) {
  return NULL;
}

thunk::ResourceCreationAPI* TestGlobals::GetResourceCreationAPI(
    PP_Instance instance) {
  return NULL;
}

PP_Module TestGlobals::GetModuleForInstance(PP_Instance instance) { return 0; }

std::string TestGlobals::GetCmdLine() { return std::string(); }

void TestGlobals::PreCacheFontForFlash(const void* /* logfontw */) {}

void TestGlobals::LogWithSource(PP_Instance instance,
                                PP_LogLevel level,
                                const std::string& source,
                                const std::string& value) {}

void TestGlobals::BroadcastLogWithSource(PP_Module module,
                                         PP_LogLevel level,
                                         const std::string& source,
                                         const std::string& value) {}

MessageLoopShared* TestGlobals::GetCurrentMessageLoop() { return NULL; }

base::TaskRunner* TestGlobals::GetFileTaskRunner() { return NULL; }

bool TestGlobals::IsHostGlobals() const {
  // Pretend to be the host-side, for code that expects one or the other.
  // TODO(dmichael): just make it settable which one we're pretending to be?
  return true;
}

}  // namespace ppapi

/* [<][>][^][v][top][bottom][index][help] */