// Copyright 2013 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/chrome_content_browser_client.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" namespace chrome { typedef testing::Test ChromeContentBrowserClientTest; TEST_F(ChromeContentBrowserClientTest, ShouldAssignSiteForURL) { ChromeContentBrowserClient client; EXPECT_FALSE(client.ShouldAssignSiteForURL(GURL("chrome-native://test"))); EXPECT_TRUE(client.ShouldAssignSiteForURL(GURL("http://www.google.com"))); EXPECT_TRUE(client.ShouldAssignSiteForURL(GURL("https://www.google.com"))); } } // namespace chrome