| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Unit tests for |FeedbackSender| object. | 5 // Unit tests for |FeedbackSender| object. |
| 6 | 6 |
| 7 #include "chrome/browser/spellchecker/feedback_sender.h" | 7 #include "chrome/browser/spellchecker/feedback_sender.h" |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/json/json_reader.h" | 11 #include "base/json/json_reader.h" |
| 12 #include "base/message_loop/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
| 13 #include "base/metrics/field_trial.h" | 13 #include "base/metrics/field_trial.h" |
| 14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 16 #include "base/values.h" | 16 #include "base/values.h" |
| 17 #include "chrome/common/chrome_switches.h" | 17 #include "chrome/common/chrome_switches.h" |
| 18 #include "chrome/common/metrics/entropy_provider.h" | |
| 19 #include "chrome/common/spellcheck_common.h" | 18 #include "chrome/common/spellcheck_common.h" |
| 20 #include "chrome/common/spellcheck_marker.h" | 19 #include "chrome/common/spellcheck_marker.h" |
| 21 #include "chrome/common/spellcheck_result.h" | 20 #include "chrome/common/spellcheck_result.h" |
| 22 #include "chrome/test/base/testing_profile.h" | 21 #include "chrome/test/base/testing_profile.h" |
| 22 #include "components/variations/entropy_provider.h" |
| 23 #include "content/public/test/test_browser_thread_bundle.h" | 23 #include "content/public/test/test_browser_thread_bundle.h" |
| 24 #include "net/url_request/test_url_fetcher_factory.h" | 24 #include "net/url_request/test_url_fetcher_factory.h" |
| 25 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
| 26 | 26 |
| 27 namespace spellcheck { | 27 namespace spellcheck { |
| 28 | 28 |
| 29 namespace { | 29 namespace { |
| 30 | 30 |
| 31 const char kCountry[] = "USA"; | 31 const char kCountry[] = "USA"; |
| 32 const char kLanguage[] = "en"; | 32 const char kLanguage[] = "en"; |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 feedback_->OnSpellcheckResults(kRendererProcessId, | 517 feedback_->OnSpellcheckResults(kRendererProcessId, |
| 518 UTF8ToUTF16(kText), | 518 UTF8ToUTF16(kText), |
| 519 std::vector<SpellCheckMarker>(), | 519 std::vector<SpellCheckMarker>(), |
| 520 &results); | 520 &results); |
| 521 feedback_->OnReceiveDocumentMarkers(kRendererProcessId, | 521 feedback_->OnReceiveDocumentMarkers(kRendererProcessId, |
| 522 std::vector<uint32>()); | 522 std::vector<uint32>()); |
| 523 EXPECT_FALSE(IsUploadingData()); | 523 EXPECT_FALSE(IsUploadingData()); |
| 524 } | 524 } |
| 525 | 525 |
| 526 } // namespace spellcheck | 526 } // namespace spellcheck |
| OLD | NEW |