| Index: chrome/common/chrome_content_client_unittest.cc
|
| diff --git a/chrome/common/chrome_content_client_unittest.cc b/chrome/common/chrome_content_client_unittest.cc
|
| index b2e31d0884ea1456ba7475af5e5619e8ab7850e5..10c231a60c496715d52cd7d8cbbb2bfcc915f0e0 100644
|
| --- a/chrome/common/chrome_content_client_unittest.cc
|
| +++ b/chrome/common/chrome_content_client_unittest.cc
|
| @@ -10,6 +10,8 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string_split.h"
|
| #include "build/build_config.h"
|
| +#include "chrome/common/channel_info.h"
|
| +#include "components/version_info/version_info.h"
|
| #include "content/public/common/content_switches.h"
|
| #include "extensions/common/constants.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -175,4 +177,10 @@ TEST(ChromeContentClientTest, AdditionalSchemes) {
|
| origin.Serialize());
|
| }
|
|
|
| +TEST(ChromeContentClientTest, ChromeChannel) {
|
| + version_info::Channel channel = chrome::GetChannel();
|
| +
|
| + EXPECT_EQ(channel, version_info::Channel::UNKNOWN);
|
| +}
|
| +
|
| } // namespace chrome_common
|
|
|