blob: 6a7173fcf4d12a2e75c17681e3c70554caddf47d [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/logging.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;
}