| Index: chrome/browser/ui/webui/options/language_options_handler_unittest.cc
|
| diff --git a/chrome/browser/ui/webui/options/language_options_handler_unittest.cc b/chrome/browser/ui/webui/options/language_options_handler_unittest.cc
|
| deleted file mode 100644
|
| index e290a9874d73427c02973a06fd675229e088ae28..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/ui/webui/options/language_options_handler_unittest.cc
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "chrome/browser/ui/webui/options/language_options_handler.h"
|
| -
|
| -#include <string>
|
| -
|
| -#include "base/values.h"
|
| -#include "build/build_config.h"
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -
|
| -#if !defined(OS_MACOSX)
|
| -TEST(LanguageOptionsHandlerTest, GetUILanguageCodeSet) {
|
| - std::unique_ptr<base::DictionaryValue> dictionary(
|
| - options::LanguageOptionsHandler::GetUILanguageCodeSet());
|
| - EXPECT_TRUE(dictionary->HasKey("en-US"));
|
| - // Note that we don't test a false case, as such an expectation will
|
| - // fail when we add support for the language.
|
| - // EXPECT_FALSE(dictionary->HasKey("no"));
|
| -}
|
| -#endif // !defined(OS_MACOSX)
|
| -
|
| -TEST(LanguageOptionsHandlerTest, GetSpellCheckLanguageCodeSet) {
|
| - std::unique_ptr<base::DictionaryValue> dictionary(
|
| - options::LanguageOptionsHandler::GetSpellCheckLanguageCodeSet());
|
| - EXPECT_TRUE(dictionary->HasKey("en-US"));
|
| -}
|
|
|