blob: af993466e5f79e7b9008060304f426cdae813cff [file] [log] [blame]
// 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 "base/notreached.h"
#include "chrome/browser/icon_loader.h"
// static
IconLoader::IconGroup IconLoader::GroupForFilepath(
const base::FilePath& file_path) {
NOTIMPLEMENTED();
return IconLoader::IconGroup();
}
// static
scoped_refptr<base::TaskRunner> IconLoader::GetReadIconTaskRunner() {
NOTIMPLEMENTED();
return nullptr;
}
void IconLoader::ReadIcon() {
NOTIMPLEMENTED();
delete this;
}