#include "base/logging.h"
#include "chrome/browser/shell_integration.h"
ShellIntegration::DefaultWebClientSetPermission
ShellIntegration::CanSetAsDefaultBrowser() {
NOTIMPLEMENTED();
return SET_DEFAULT_NOT_ALLOWED;
}
bool ShellIntegration::SetAsDefaultBrowser() {
NOTIMPLEMENTED();
return false;
}
bool ShellIntegration::SetAsDefaultProtocolClient(const std::string& protocol) {
NOTIMPLEMENTED();
return false;
}
ShellIntegration::DefaultWebClientState ShellIntegration::IsDefaultBrowser() {
NOTIMPLEMENTED();
return UNKNOWN_DEFAULT_WEB_CLIENT;
}
ShellIntegration::DefaultWebClientState
ShellIntegration::IsDefaultProtocolClient(const std::string& protocol) {
NOTIMPLEMENTED();
return UNKNOWN_DEFAULT_WEB_CLIENT;
}
bool ShellIntegration::IsFirefoxDefaultBrowser() {
return false;
}