Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(679)

Side by Side Diff: chrome/browser/visitedlink/visitedlink_unittest.cc

Issue 7616019: Reorganize chrome/test, part #9 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/base/testing_browser_process_test.h"
19 #include "chrome/test/base/testing_profile.h" 20 #include "chrome/test/base/testing_profile.h"
20 #include "chrome/test/testing_browser_process_test.h"
21 #include "content/browser/browser_thread.h" 21 #include "content/browser/browser_thread.h"
22 #include "content/browser/renderer_host/browser_render_process_host.h" 22 #include "content/browser/renderer_host/browser_render_process_host.h"
23 #include "content/browser/renderer_host/test_render_view_host.h" 23 #include "content/browser/renderer_host/test_render_view_host.h"
24 #include "content/common/notification_service.h" 24 #include "content/common/notification_service.h"
25 #include "googleurl/src/gurl.h" 25 #include "googleurl/src/gurl.h"
26 #include "testing/gtest/include/gtest/gtest.h" 26 #include "testing/gtest/include/gtest/gtest.h"
27 27
28 namespace { 28 namespace {
29 29
30 // a nice long URL that we can append numbers to to get new URLs 30 // a nice long URL that we can append numbers to to get new URLs
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 EXPECT_EQ(1, profile()->add_event_count()); 721 EXPECT_EQ(1, profile()->add_event_count());
722 EXPECT_EQ(0, profile()->reset_event_count()); 722 EXPECT_EQ(0, profile()->reset_event_count());
723 723
724 // Activate the tab. 724 // Activate the tab.
725 rvh()->WasRestored(); 725 rvh()->WasRestored();
726 726
727 // We should have only one more reset event. 727 // We should have only one more reset event.
728 EXPECT_EQ(1, profile()->add_event_count()); 728 EXPECT_EQ(1, profile()->add_event_count());
729 EXPECT_EQ(1, profile()->reset_event_count()); 729 EXPECT_EQ(1, profile()->reset_event_count());
730 } 730 }
OLDNEW
« no previous file with comments | « chrome/browser/user_style_sheet_watcher_unittest.cc ('k') | chrome/browser/web_resource/promo_resource_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698