OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <vector> | 5 #include <vector> |
6 #include <string> | 6 #include <string> |
7 #include <cstdio> | 7 #include <cstdio> |
8 | 8 |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
12 #include "base/process_util.h" | 12 #include "base/process_util.h" |
13 #include "base/shared_memory.h" | 13 #include "base/shared_memory.h" |
14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
15 #include "chrome/browser/visitedlink/visitedlink_master.h" | 15 #include "chrome/browser/visitedlink/visitedlink_master.h" |
16 #include "chrome/browser/visitedlink/visitedlink_event_listener.h" | 16 #include "chrome/browser/visitedlink/visitedlink_event_listener.h" |
17 #include "chrome/common/render_messages.h" | 17 #include "chrome/common/render_messages.h" |
18 #include "chrome/renderer/visitedlink_slave.h" | 18 #include "chrome/renderer/visitedlink_slave.h" |
| 19 #include "chrome/test/testing_browser_process_test.h" |
19 #include "chrome/test/testing_profile.h" | 20 #include "chrome/test/testing_profile.h" |
20 #include "content/browser/browser_thread.h" | 21 #include "content/browser/browser_thread.h" |
21 #include "content/browser/renderer_host/browser_render_process_host.h" | 22 #include "content/browser/renderer_host/browser_render_process_host.h" |
22 #include "content/browser/renderer_host/test_render_view_host.h" | 23 #include "content/browser/renderer_host/test_render_view_host.h" |
23 #include "content/common/notification_service.h" | 24 #include "content/common/notification_service.h" |
24 #include "googleurl/src/gurl.h" | 25 #include "googleurl/src/gurl.h" |
25 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
26 | 27 |
27 namespace { | 28 namespace { |
28 | 29 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 } | 66 } |
66 | 67 |
67 int reset_count() const { return reset_count_; } | 68 int reset_count() const { return reset_count_; } |
68 int add_count() const { return add_count_; } | 69 int add_count() const { return add_count_; } |
69 | 70 |
70 private: | 71 private: |
71 int reset_count_; | 72 int reset_count_; |
72 int add_count_; | 73 int add_count_; |
73 }; | 74 }; |
74 | 75 |
75 class VisitedLinkTest : public testing::Test { | 76 class VisitedLinkTest : public TestingBrowserProcessTest { |
76 protected: | 77 protected: |
77 VisitedLinkTest() | 78 VisitedLinkTest() |
78 : ui_thread_(BrowserThread::UI, &message_loop_), | 79 : ui_thread_(BrowserThread::UI, &message_loop_), |
79 file_thread_(BrowserThread::FILE, &message_loop_) {} | 80 file_thread_(BrowserThread::FILE, &message_loop_) {} |
80 // Initialize the history system. This should be called before InitVisited(). | 81 // Initialize the history system. This should be called before InitVisited(). |
81 bool InitHistory() { | 82 bool InitHistory() { |
82 history_service_ = new HistoryService; | 83 history_service_ = new HistoryService; |
83 return history_service_->Init(history_dir_, NULL); | 84 return history_service_->Init(history_dir_, NULL); |
84 } | 85 } |
85 | 86 |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 EXPECT_EQ(1, profile()->add_event_count()); | 721 EXPECT_EQ(1, profile()->add_event_count()); |
721 EXPECT_EQ(0, profile()->reset_event_count()); | 722 EXPECT_EQ(0, profile()->reset_event_count()); |
722 | 723 |
723 // Activate the tab. | 724 // Activate the tab. |
724 rvh()->WasRestored(); | 725 rvh()->WasRestored(); |
725 | 726 |
726 // We should have only one more reset event. | 727 // We should have only one more reset event. |
727 EXPECT_EQ(1, profile()->add_event_count()); | 728 EXPECT_EQ(1, profile()->add_event_count()); |
728 EXPECT_EQ(1, profile()->reset_event_count()); | 729 EXPECT_EQ(1, profile()->reset_event_count()); |
729 } | 730 } |
OLD | NEW |