chromium/components/permissions/chooser_controller.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/permissions/chooser_controller.h"

#include "base/notreached.h"
#include "base/strings/utf_string_conversions.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util.h"

namespace permissions {

ChooserController::ChooserController(std::u16string title) :{}

ChooserController::~ChooserController() = default;

std::u16string ChooserController::GetTitle() const {}

void ChooserController::View::OnAdapterAuthorizationChanged(bool authorized) {}

bool ChooserController::ShouldShowIconBeforeText() const {}

bool ChooserController::ShouldShowHelpButton() const {}

bool ChooserController::ShouldShowReScanButton() const {}

bool ChooserController::AllowMultipleSelection() const {}

bool ChooserController::ShouldShowSelectAllCheckbox() const {}

std::u16string ChooserController::GetCancelButtonLabel() const {}

std::u16string ChooserController::GetSelectAllCheckboxLabel() const {}

bool ChooserController::BothButtonsAlwaysEnabled() const {}

bool ChooserController::TableViewAlwaysDisabled() const {}

int ChooserController::GetSignalStrengthLevel(size_t index) const {}

bool ChooserController::IsConnected(size_t index) const {}

bool ChooserController::IsPaired(size_t index) const {}

void ChooserController::RefreshOptions() {}

void ChooserController::OpenAdapterOffHelpUrl() const {}

void ChooserController::OpenPermissionPreferences() const {}

bool ChooserController::ShouldShowAdapterOffView() const {}

int ChooserController::GetAdapterOffMessageId() const {}

int ChooserController::GetTurnAdapterOnLinkTextMessageId() const {}

bool ChooserController::ShouldShowAdapterUnauthorizedView() const {}

int ChooserController::GetBluetoothUnauthorizedMessageId() const {}

int ChooserController::GetAuthorizeBluetoothLinkTextMessageId() const {}

}  // namespace permissions