blob: 138d10937442e74f62311242575ad5d504df2012 [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
content::BrowserThread::ID IconLoader::ReadIconThreadID() {
NOTIMPLEMENTED();
return content::BrowserThread::FILE;
}
void IconLoader::ReadIcon() {
NOTIMPLEMENTED();
delete this;
}