blob: 2c01d33266f904dad343d8517538f730f8c03a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/chrome_web_ui.h"
#include "base/command_line.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/chrome_switches.h"
#include "content/browser/tab_contents/tab_contents.h"
#if defined(TOOLKIT_VIEWS)
#include "views/widget/widget.h"
#endif
namespace {
// If true, overrides IsMoreWebUI flag.
bool override_more_webui_ = false;
} // namespace
ChromeWebUI::ChromeWebUI(TabContents* contents)
: WebUI(contents) {
}
ChromeWebUI::~ChromeWebUI() {
}
Profile* ChromeWebUI::GetProfile() const {
return Profile::FromBrowserContext(tab_contents()->browser_context());
}
bool ChromeWebUI::CanShowBookmarkBar() const {
return false;
}
// static
bool ChromeWebUI::IsMoreWebUI() {
bool more_webui = CommandLine::ForCurrentProcess()->HasSwitch(
switches::kUseMoreWebUI) || override_more_webui_;
#if defined(TOOLKIT_VIEWS)
more_webui |= views::Widget::IsPureViews();
#endif
return more_webui;
}
void ChromeWebUI::OverrideMoreWebUI(bool use_more_webui) {
override_more_webui_ = use_more_webui;
}
|