| Index: chrome/browser/ui/webui/chrome_web_ui.cc
|
| diff --git a/chrome/browser/ui/webui/chrome_web_ui.cc b/chrome/browser/ui/webui/chrome_web_ui.cc
|
| index 69e0e41827d000918951dfb6a53a84ded9e7f70f..885711ce9fd6feee87c9969a998da0b585fbcf4e 100644
|
| --- a/chrome/browser/ui/webui/chrome_web_ui.cc
|
| +++ b/chrome/browser/ui/webui/chrome_web_ui.cc
|
| @@ -4,6 +4,9 @@
|
|
|
| #include "chrome/browser/ui/webui/chrome_web_ui.h"
|
|
|
| +#include "chrome/browser/profiles/profile.h"
|
| +#include "content/browser/tab_contents/tab_contents.h"
|
| +
|
| ChromeWebUI::ChromeWebUI(TabContents* contents)
|
| : WebUI(contents),
|
| force_bookmark_bar_visible_(false) {
|
| @@ -12,3 +15,6 @@ ChromeWebUI::ChromeWebUI(TabContents* contents)
|
| ChromeWebUI::~ChromeWebUI() {
|
| }
|
|
|
| +Profile* ChromeWebUI::GetProfile() const {
|
| + return Profile::FromBrowserContext(tab_contents()->browser_context());
|
| +}
|
|
|