This source file includes following definitions.
- ReadGroupIDFromFilepath
- IsIconMutableFromFilepath
- ReadIconThreadID
- ReadIcon
#include "base/logging.h"
#include "chrome/browser/icon_loader.h"
IconGroupID IconLoader::ReadGroupIDFromFilepath(
const base::FilePath& filepath) {
NOTIMPLEMENTED();
return 0;
}
bool IconLoader::IsIconMutableFromFilepath(const base::FilePath&) {
return false;
}
content::BrowserThread::ID IconLoader::ReadIconThreadID() {
NOTIMPLEMENTED();
return content::BrowserThread::FILE;
}
void IconLoader::ReadIcon() {
NOTIMPLEMENTED();
}