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

Side by Side Diff: chrome/browser/task_manager/task_manager_browsertest_util.h

Issue 972083002: Report utility process JS memory in task manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-oop
Patch Set: Try to fix build... again. Created 5 years, 7 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
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 #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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698