This source file includes following definitions.
- Delegate
#include "content/browser/power_save_blocker_impl.h"
#include "base/logging.h"
#include "base/memory/ref_counted.h"
namespace content {
class PowerSaveBlockerImpl::Delegate
: public base::RefCountedThreadSafe<PowerSaveBlockerImpl::Delegate> {
public:
Delegate() {}
private:
friend class base::RefCountedThreadSafe<Delegate>;
virtual ~Delegate() {}
DISALLOW_COPY_AND_ASSIGN(Delegate);
};
PowerSaveBlockerImpl::PowerSaveBlockerImpl(PowerSaveBlockerType type,
const std::string& reason)
: delegate_(new Delegate()) {
NOTIMPLEMENTED();
}
PowerSaveBlockerImpl::~PowerSaveBlockerImpl() { NOTIMPLEMENTED(); }
}