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

Unified Diff: chrome/browser/task_manager/task_manager_browsertest_util.h

Issue 1925703004: See the diff if we move task_manager_browsertest_util.cc to chrome/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tm_fix_io
Patch Set: Created 4 years, 8 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/task_manager/task_manager_browsertest_util.h
diff --git a/chrome/browser/task_manager/task_manager_browsertest_util.h b/chrome/browser/task_manager/task_manager_browsertest_util.h
deleted file mode 100644
index 7f9902a164b3b9993c22194cb9d9fff32df62b1c..0000000000000000000000000000000000000000
--- a/chrome/browser/task_manager/task_manager_browsertest_util.h
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_
-#define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_
-
-#include <stddef.h>
-
-#include "base/strings/string16.h"
-
-namespace task_manager {
-namespace browsertest_util {
-
-// For the old task manager browser tests, we must call this to disable the
-// use of the new implementation and revert back to the old one.
-void EnableOldTaskManager();
-
-// Runs the message loop, observing the task manager, until there are exactly
-// |resource_count| many resources whose titles match the pattern
-// |title_pattern|. The match is done via string_util's base::MatchPattern, so
-// |title_pattern| may contain wildcards like "*".
-//
-// If the wait times out, this test will trigger a gtest failure. To get
-// meaningful errors, tests should wrap invocations of this function with
-// ASSERT_NO_FATAL_FAILURE().
-void WaitForTaskManagerRows(int resource_count,
- const base::string16& title_pattern);
-
-// Specifies some integer-valued column of numeric data reported by the task
-// manager model. Please add more here as needed by tests.
-enum ColumnSpecifier {
- V8_MEMORY,
- V8_MEMORY_USED,
- SQLITE_MEMORY_USED,
-
- COLUMN_NONE, // Default value.
-};
-
-// Waits for the row identified by |title_pattern| to be showing a numeric data
-// value of at least |min_column_value| in the task manager column identified by
-// |column_specifier|. As with WaitForTaskManagerRows(), |title_pattern| is
-// meant to be a string returned by MatchTab() or similar.
-//
-// To get meaningful errors, tests should wrap invocations of this function with
-// ASSERT_NO_FATAL_FAILURE().
-void WaitForTaskManagerStatToExceed(const base::string16& title_pattern,
- ColumnSpecifier column_specifier,
- size_t min_column_value);
-
-// ASCII matcher convenience functions for use with WaitForTaskManagerRows()
-base::string16 MatchTab(const char* title); // "Tab: " + title
-base::string16 MatchAnyTab(); // "Tab: *"
-base::string16 MatchAboutBlankTab(); // "Tab: about:blank"
-base::string16 MatchExtension(const char* title); // "Extension: " + title
-base::string16 MatchAnyExtension(); // "Extension: *"
-base::string16 MatchApp(const char* title); // "App: " + title
-base::string16 MatchAnyApp(); // "App: *"
-base::string16 MatchWebView(const char* title); // "WebView: " + title
-base::string16 MatchAnyWebView(); // "WebView: *"
-base::string16 MatchBackground(const char* title); // "Background: " + title
-base::string16 MatchAnyBackground(); // "Background: *"
-base::string16 MatchPrint(const char* title); // "Print: " + title
-base::string16 MatchAnyPrint(); // "Print: *"
-base::string16 MatchSubframe(const char* title); // "Subframe: " + title
-base::string16 MatchAnySubframe(); // "Subframe: *"
-// "Utility: " + title
-base::string16 MatchUtility(const base::string16& title);
-base::string16 MatchAnyUtility(); // "Utility: *"
-
-} // namespace browsertest_util
-} // namespace task_manager
-
-#endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_
« no previous file with comments | « chrome/browser/task_manager/task_manager_browsertest.cc ('k') | chrome/browser/task_manager/task_manager_browsertest_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698