blob: 01d668a40d7dc40579115bc4c1fd34abe13e6d9d [file] [log] [blame]
// Copyright (c) 2012 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.
#ifndef CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_UI_H_
#define CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_UI_H_
#include "base/macros.h"
#include "base/strings/string16.h"
#include "components/prefs/pref_change_registrar.h"
#include "content/public/browser/url_data_source.h"
#include "content/public/browser/web_ui_controller.h"
class GURL;
class Profile;
namespace base {
class DictionaryValue;
}
namespace user_prefs {
class PrefRegistrySyncable;
}
// The WebUIController used for the incognito and guest mode New Tab page.
class NewTabUI : public content::WebUIController {
public:
explicit NewTabUI(content::WebUI* web_ui);
~NewTabUI() override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
// Checks whether the given URL points to an NTP WebUI. Note that this only
// applies to incognito and guest mode NTPs - you probably want to check
// search::NavEntryIsInstantNTP too!
static bool IsNewTab(const GURL& url);
// TODO(dbeam): why are these static |Set*()| methods on NewTabUI?
// Adds "url", "title", and "direction" keys on incoming dictionary, setting
// title as the url as a fallback on empty title.
static void SetUrlTitleAndDirection(base::DictionaryValue* dictionary,
const base::string16& title,
const GURL& gurl);
// Adds "full_name" and "full_name_direction" keys on incoming dictionary.
static void SetFullNameAndDirection(const base::string16& full_name,
base::DictionaryValue* dictionary);
private:
class NewTabHTMLSource : public content::URLDataSource {
public:
explicit NewTabHTMLSource(Profile* profile);
~NewTabHTMLSource() override;
// content::URLDataSource implementation.
std::string GetSource() override;
void StartDataRequest(
const std::string& path,
const content::WebContents::Getter& wc_getter,
const content::URLDataSource::GotDataCallback& callback) override;
std::string GetMimeType(const std::string&) override;
bool ShouldReplaceExistingSource() override;
std::string GetContentSecurityPolicyScriptSrc() override;
std::string GetContentSecurityPolicyStyleSrc() override;
std::string GetContentSecurityPolicyImgSrc() override;
std::string GetContentSecurityPolicyChildSrc() override;
private:
// Pointer back to the original profile.
Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(NewTabHTMLSource);
};
void OnShowBookmarkBarChanged();
Profile* GetProfile() const;
PrefChangeRegistrar pref_change_registrar_;
DISALLOW_COPY_AND_ASSIGN(NewTabUI);
};
#endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_UI_H_