#ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_UTIL_H_
#define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_UTIL_H_
#include "base/basictypes.h"
#include "base/strings/string16.h"
class Profile;
namespace content {
class WebContents;
}
namespace task_manager {
namespace util {
int GetMessagePrefixID(bool is_app,
bool is_extension,
bool is_incognito,
bool is_prerender,
bool is_background);
base::string16 GetProfileNameFromInfoCache(Profile* profile);
base::string16 GetTitleFromWebContents(content::WebContents* web_contents);
}
}
#endif