chromium/components/omnibox/browser/test_location_bar_model.cc

// Copyright 2012 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/omnibox/browser/test_location_bar_model.h"

#include "base/strings/utf_string_conversions.h"

#if defined(TOOLKIT_VIEWS)
#include "components/omnibox/browser/vector_icons.h"  // nogncheck
#endif

TestLocationBarModel::TestLocationBarModel()
    :{}

TestLocationBarModel::~TestLocationBarModel() {}

std::u16string TestLocationBarModel::GetFormattedFullURL() const {}

std::u16string TestLocationBarModel::GetURLForDisplay() const {}

GURL TestLocationBarModel::GetURL() const {}

security_state::SecurityLevel TestLocationBarModel::GetSecurityLevel() const {}

net::CertStatus TestLocationBarModel::GetCertStatus() const {}

metrics::OmniboxEventProto::PageClassification
TestLocationBarModel::GetPageClassification(bool is_prefetch) {}

const gfx::VectorIcon& TestLocationBarModel::GetVectorIcon() const {}

std::u16string TestLocationBarModel::GetSecureDisplayText() const {}

std::u16string TestLocationBarModel::GetSecureAccessibilityText() const {}

bool TestLocationBarModel::ShouldDisplayURL() const {}

bool TestLocationBarModel::IsOfflinePage() const {}

bool TestLocationBarModel::ShouldPreventElision() const {}

bool TestLocationBarModel::ShouldUseUpdatedConnectionSecurityIndicators()
    const {}