chromium/components/safe_search_api/safe_search_util_unittest.cc

// Copyright 2014 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/safe_search_api/safe_search_util.h"

#include "net/http/http_request_headers.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace {
// Does a request using the |url_string| URL and verifies that the expected
// string is equal to the query part (between ? and #) of the final url of
// that request.
void CheckAddedParameters(const std::string& url_string,
                          const std::string& expected_query_parameters) {}

TEST(SafeSearchUtilTest, AddGoogleSafeSearchParams) {}

TEST(SafeSearchUtilTest, SafeSearchSettingsPage) {}

TEST(SafeSearchUtilTest, SetYoutubeHeader) {}

TEST(SafeSearchUtilTest, OverrideYoutubeHeader) {}

TEST(SafeSearchUtilTest, DoesntTouchNonYoutubeURL) {}

}  // namespace