| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/google/google_url_tracker.h" | 5 #include "chrome/browser/google/google_url_tracker.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
| 11 #include "chrome/browser/infobars/infobar_delegate.h" | 11 #include "chrome/browser/infobars/infobar_delegate.h" |
| 12 #include "chrome/browser/google/google_url_tracker_factory.h" | 12 #include "chrome/browser/google/google_url_tracker_factory.h" |
| 13 #include "chrome/browser/prefs/pref_service.h" | 13 #include "chrome/browser/prefs/pref_service.h" |
| 14 #include "chrome/common/chrome_notification_types.h" | 14 #include "chrome/common/chrome_notification_types.h" |
| 15 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
| 16 #include "chrome/test/base/testing_profile.h" | 16 #include "chrome/test/base/testing_profile.h" |
| 17 #include "content/public/browser/notification_service.h" | 17 #include "content/public/browser/notification_service.h" |
| 18 #include "content/public/common/url_fetcher.h" | 18 #include "content/public/common/url_fetcher.h" |
| 19 #include "content/public/test/test_browser_thread.h" | 19 #include "content/public/test/test_browser_thread.h" |
| 20 #include "content/public/test/test_url_fetcher_factory.h" | 20 #include "content/public/test/test_url_fetcher_factory.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 | 22 |
| 23 class TabContentsWrapper; | 23 class TabContents; |
| 24 typedef TabContents TabContentsWrapper; |
| 24 | 25 |
| 25 // TestNotificationObserver --------------------------------------------------- | 26 // TestNotificationObserver --------------------------------------------------- |
| 26 | 27 |
| 27 namespace { | 28 namespace { |
| 28 | 29 |
| 29 class TestNotificationObserver : public content::NotificationObserver { | 30 class TestNotificationObserver : public content::NotificationObserver { |
| 30 public: | 31 public: |
| 31 TestNotificationObserver(); | 32 TestNotificationObserver(); |
| 32 virtual ~TestNotificationObserver(); | 33 virtual ~TestNotificationObserver(); |
| 33 | 34 |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 EXPECT_FALSE(observer_->notified()); | 828 EXPECT_FALSE(observer_->notified()); |
| 828 | 829 |
| 829 infobar4->Accept(); | 830 infobar4->Accept(); |
| 830 EXPECT_TRUE(GetInfoBar(1) == NULL); | 831 EXPECT_TRUE(GetInfoBar(1) == NULL); |
| 831 EXPECT_TRUE(GetInfoBar(3) == NULL); | 832 EXPECT_TRUE(GetInfoBar(3) == NULL); |
| 832 EXPECT_TRUE(GetInfoBar(4) == NULL); | 833 EXPECT_TRUE(GetInfoBar(4) == NULL); |
| 833 EXPECT_EQ(GURL("http://www.google.co.jp/"), google_url()); | 834 EXPECT_EQ(GURL("http://www.google.co.jp/"), google_url()); |
| 834 EXPECT_EQ(GURL("http://www.google.co.jp/"), GetLastPromptedGoogleURL()); | 835 EXPECT_EQ(GURL("http://www.google.co.jp/"), GetLastPromptedGoogleURL()); |
| 835 EXPECT_TRUE(observer_->notified()); | 836 EXPECT_TRUE(observer_->notified()); |
| 836 } | 837 } |
| OLD | NEW |