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

Unified Diff: chrome/browser/history/history_extension_apitest.cc

Issue 8372021: Move history extension API implementation to history dir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 2 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
« no previous file with comments | « chrome/browser/history/history_extension_api.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history_extension_apitest.cc
diff --git a/chrome/browser/extensions/extension_history_apitest.cc b/chrome/browser/history/history_extension_apitest.cc
similarity index 80%
rename from chrome/browser/extensions/extension_history_apitest.cc
rename to chrome/browser/history/history_extension_apitest.cc
index 506319f4ced59411cd44e69a6b9a52a1d2d6f78b..129c9dc70dfbc25bff5547f6325e19148fb29b24 100644
--- a/chrome/browser/extensions/extension_history_apitest.cc
+++ b/chrome/browser/history/history_extension_apitest.cc
@@ -7,7 +7,7 @@
#include "chrome/browser/extensions/extension_apitest.h"
#include "net/base/mock_host_resolver.h"
-class ExtensionHistoryApiTest : public ExtensionApiTest {
+class HistoryExtensionApiTest : public ExtensionApiTest {
public:
virtual void SetUpInProcessBrowserTestFixture() {
ExtensionApiTest::SetUpInProcessBrowserTestFixture();
@@ -21,11 +21,11 @@ class ExtensionHistoryApiTest : public ExtensionApiTest {
// Full text search indexing sometimes exceeds a timeout.
// Fix this as part of crbug/76170.
-IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, DISABLED_MiscSearch) {
+IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, DISABLED_MiscSearch) {
ASSERT_TRUE(RunExtensionSubtest("history", "misc_search.html")) << message_;
}
-IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, TimedSearch) {
+IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, TimedSearch) {
ASSERT_TRUE(RunExtensionSubtest("history", "timed_search.html")) << message_;
}
@@ -35,12 +35,12 @@ IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, TimedSearch) {
#else
#define MAYBE_Delete Delete
#endif
-IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, MAYBE_Delete) {
+IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, MAYBE_Delete) {
ASSERT_TRUE(RunExtensionSubtest("history", "delete.html")) << message_;
}
// See crbug.com/79074
-IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, FLAKY_GetVisits) {
+IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, FLAKY_GetVisits) {
ASSERT_TRUE(RunExtensionSubtest("history", "get_visits.html")) << message_;
}
@@ -52,7 +52,7 @@ IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, FLAKY_GetVisits) {
#define MAYBE_SearchAfterAdd SearchAfterAdd
#endif
-IN_PROC_BROWSER_TEST_F(ExtensionHistoryApiTest, MAYBE_SearchAfterAdd) {
+IN_PROC_BROWSER_TEST_F(HistoryExtensionApiTest, MAYBE_SearchAfterAdd) {
ASSERT_TRUE(RunExtensionSubtest("history", "search_after_add.html"))
<< message_;
}
« no previous file with comments | « chrome/browser/history/history_extension_api.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698