| 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 #ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_ |
| 6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_ | 6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 | 9 |
| 10 namespace task_manager { | 10 namespace task_manager { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 base::string16 MatchApp(const char* title); // "App: " + title | 51 base::string16 MatchApp(const char* title); // "App: " + title |
| 52 base::string16 MatchAnyApp(); // "App: *" | 52 base::string16 MatchAnyApp(); // "App: *" |
| 53 base::string16 MatchWebView(const char* title); // "WebView: " + title | 53 base::string16 MatchWebView(const char* title); // "WebView: " + title |
| 54 base::string16 MatchAnyWebView(); // "WebView: *" | 54 base::string16 MatchAnyWebView(); // "WebView: *" |
| 55 base::string16 MatchBackground(const char* title); // "Background: " + title | 55 base::string16 MatchBackground(const char* title); // "Background: " + title |
| 56 base::string16 MatchAnyBackground(); // "Background: *" | 56 base::string16 MatchAnyBackground(); // "Background: *" |
| 57 base::string16 MatchPrint(const char* title); // "Print: " + title | 57 base::string16 MatchPrint(const char* title); // "Print: " + title |
| 58 base::string16 MatchAnyPrint(); // "Print: *" | 58 base::string16 MatchAnyPrint(); // "Print: *" |
| 59 base::string16 MatchSubframe(const char* title); // "Subframe: " + title | 59 base::string16 MatchSubframe(const char* title); // "Subframe: " + title |
| 60 base::string16 MatchAnySubframe(); // "Subframe: *" | 60 base::string16 MatchAnySubframe(); // "Subframe: *" |
| 61 // "Utility: " + title |
| 62 base::string16 MatchUtility(const base::string16& title); |
| 63 base::string16 MatchAnyUtility(); // "Utility: *" |
| 61 | 64 |
| 62 } // namespace browsertest_util | 65 } // namespace browsertest_util |
| 63 } // namespace task_manager | 66 } // namespace task_manager |
| 64 | 67 |
| 65 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_ | 68 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_BROWSERTEST_UTIL_H_ |
| OLD | NEW |