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

Unified Diff: chrome/browser/content_settings/tab_specific_content_settings_unittest.cc

Issue 7892007: Add ChromeRenderViewHostTestHarness to get rid of the dependency from RVHTH to profile (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/content_settings/tab_specific_content_settings_unittest.cc
diff --git a/chrome/browser/content_settings/tab_specific_content_settings_unittest.cc b/chrome/browser/content_settings/tab_specific_content_settings_unittest.cc
index 2345ff65af31bbdff975f3506fd16de15d3cf7e3..fbfe67a34fa4728d09fc5c24d8bee6c24ea09d6b 100644
--- a/chrome/browser/content_settings/tab_specific_content_settings_unittest.cc
+++ b/chrome/browser/content_settings/tab_specific_content_settings_unittest.cc
@@ -3,18 +3,17 @@
// found in the LICENSE file.
#include "chrome/browser/content_settings/tab_specific_content_settings.h"
+#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "chrome/test/base/testing_profile.h"
#include "content/browser/browser_thread.h"
-#include "content/browser/renderer_host/test_render_view_host.h"
#include "content/browser/tab_contents/test_tab_contents.h"
#include "net/base/cookie_monster.h"
#include "testing/gtest/include/gtest/gtest.h"
-class TabSpecificContentSettingsTest : public RenderViewHostTestHarness {
+class TabSpecificContentSettingsTest : public ChromeRenderViewHostTestHarness {
public:
TabSpecificContentSettingsTest()
- : RenderViewHostTestHarness(),
- browser_thread_(BrowserThread::UI, &message_loop_) {}
+ : browser_thread_(BrowserThread::UI, &message_loop_) {}
private:
BrowserThread browser_thread_;

Powered by Google App Engine
This is Rietveld 408576698