| 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 8ca121f36404bb1d92d78230d98c9d0916b15482..9fc5974150e28a1544a80aff1e5456cdd1c83391 100644
|
| --- a/chrome/browser/ui/webui/chrome_web_ui.cc
|
| +++ b/chrome/browser/ui/webui/chrome_web_ui.cc
|
| @@ -21,8 +21,7 @@ bool override_more_webui_ = false;
|
| } // namespace
|
|
|
| ChromeWebUI::ChromeWebUI(TabContents* contents)
|
| - : WebUI(contents),
|
| - force_bookmark_bar_visible_(false) {
|
| + : WebUI(contents) {
|
| }
|
|
|
| ChromeWebUI::~ChromeWebUI() {
|
| @@ -32,6 +31,10 @@ Profile* ChromeWebUI::GetProfile() const {
|
| return Profile::FromBrowserContext(tab_contents()->browser_context());
|
| }
|
|
|
| +bool ChromeWebUI::IsBookmarkBarVisible() const {
|
| + return false;
|
| +}
|
| +
|
| // static
|
| bool ChromeWebUI::IsMoreWebUI() {
|
| bool more_webui = CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|