#ifndef CHROME_BROWSER_UI_VIEWS_FILE_SYSTEM_ACCESS_FILE_SYSTEM_ACCESS_VIEWS_HELPERS_H_
#define CHROME_BROWSER_UI_VIEWS_FILE_SYSTEM_ACCESS_FILE_SYSTEM_ACCESS_VIEWS_HELPERS_H_
#include <memory>
#include <string>
namespace base {
class FilePath;
}
namespace content {
class WebContents;
}
namespace url {
class Origin;
}
namespace views {
class View;
}
namespace file_system_access_ui_helper {
std::unique_ptr<views::View> CreateOriginLabel(
content::WebContents* web_contents,
int message_id,
const url::Origin& origin,
int text_context,
bool show_emphasis);
std::unique_ptr<views::View> CreateOriginPathLabel(
content::WebContents* web_contents,
int message_id,
const url::Origin& origin,
const base::FilePath& path,
int text_context,
bool show_emphasis);
}
#endif