#include "extensions/browser/test_runtime_api_delegate.h"
#include "extensions/common/api/runtime.h"
#include "extensions/common/extension_id.h"
namespace extensions {
PlatformInfo;
TestRuntimeAPIDelegate::TestRuntimeAPIDelegate() { … }
TestRuntimeAPIDelegate::~TestRuntimeAPIDelegate() { … }
void TestRuntimeAPIDelegate::AddUpdateObserver(UpdateObserver* observer) { … }
void TestRuntimeAPIDelegate::RemoveUpdateObserver(UpdateObserver* observer) { … }
void TestRuntimeAPIDelegate::ReloadExtension(const ExtensionId& extension_id) { … }
bool TestRuntimeAPIDelegate::CheckForUpdates(const ExtensionId& extension_id,
UpdateCheckCallback callback) { … }
void TestRuntimeAPIDelegate::OpenURL(const GURL& uninstall_url) { … }
bool TestRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) { … }
bool TestRuntimeAPIDelegate::RestartDevice(std::string* error_message) { … }
}