| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "components/feedback/feedback_uploader_chrome.h" | 5 #include "components/feedback/feedback_uploader_chrome.h" |
| 6 | 6 |
| 7 #include <string> |
| 8 |
| 7 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 8 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
| 9 #include "components/variations/net/variations_http_header_provider.h" | |
| 10 #include "components/variations/variations_associated_data.h" | 11 #include "components/variations/variations_associated_data.h" |
| 12 #include "components/variations/variations_http_header_provider.h" |
| 11 #include "content/public/test/test_browser_context.h" | 13 #include "content/public/test/test_browser_context.h" |
| 12 #include "net/url_request/test_url_fetcher_factory.h" | 14 #include "net/url_request/test_url_fetcher_factory.h" |
| 13 #include "net/url_request/url_fetcher_delegate.h" | 15 #include "net/url_request/url_fetcher_delegate.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 17 |
| 16 namespace feedback { | 18 namespace feedback { |
| 17 | 19 |
| 18 class FeedbackUploaderChromeTest : public ::testing::Test { | 20 class FeedbackUploaderChromeTest : public ::testing::Test { |
| 19 protected: | 21 protected: |
| 20 FeedbackUploaderChromeTest() {} | 22 FeedbackUploaderChromeTest() {} |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 std::string value; | 63 std::string value; |
| 62 EXPECT_TRUE(headers.GetHeader("X-Client-Data", &value)); | 64 EXPECT_TRUE(headers.GetHeader("X-Client-Data", &value)); |
| 63 EXPECT_FALSE(value.empty()); | 65 EXPECT_FALSE(value.empty()); |
| 64 // The fetcher's delegate is responsible for freeing the fetcher (and itself). | 66 // The fetcher's delegate is responsible for freeing the fetcher (and itself). |
| 65 fetcher->delegate()->OnURLFetchComplete(fetcher); | 67 fetcher->delegate()->OnURLFetchComplete(fetcher); |
| 66 | 68 |
| 67 variations::VariationsHttpHeaderProvider::GetInstance()->ResetForTesting(); | 69 variations::VariationsHttpHeaderProvider::GetInstance()->ResetForTesting(); |
| 68 } | 70 } |
| 69 | 71 |
| 70 } // namespace feedback | 72 } // namespace feedback |
| OLD | NEW |