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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
// 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 <string>
#include "base/gtest_prod_util.h"
#include "base/prefs/pref_change_registrar.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/url_data_source.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_observer.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 New Tab page.
class NewTabUI : public content::WebUIController,
public content::WebContentsObserver,
public content::NotificationObserver {
public:
explicit NewTabUI(content::WebUI* web_ui);
~NewTabUI() override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
// Returns whether or not to show apps pages.
static bool ShouldShowApps();
// Returns whether or not "Discovery" in the NTP is Enabled.
static bool IsDiscoveryInNTPEnabled();
// 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);
// Returns a pointer to a NewTabUI if the WebUIController object is a new tab
// page.
static NewTabUI* FromWebUIController(content::WebUIController* ui);
// The current preference version.
static int current_pref_version() { return current_pref_version_; }
// WebUIController implementation:
void RenderViewCreated(content::RenderViewHost* render_view_host) override;
void RenderViewReused(content::RenderViewHost* render_view_host) override;
// WebContentsObserver implementation:
void WasHidden() override;
bool showing_sync_bubble() { return showing_sync_bubble_; }
void set_showing_sync_bubble(bool showing) { showing_sync_bubble_ = showing; }
class NewTabHTMLSource : public content::URLDataSource {
public:
explicit NewTabHTMLSource(Profile* profile);
~NewTabHTMLSource() override;
// content::URLDataSource implementation.
std::string GetSource() const override;
void StartDataRequest(
const std::string& path,
int render_process_id,
int render_frame_id,
const content::URLDataSource::GotDataCallback& callback) override;
std::string GetMimeType(const std::string&) const override;
bool ShouldReplaceExistingSource() const override;
bool ShouldAddContentSecurityPolicy() const override;
// Adds |resource| to the source. |resource_id| is resource id or 0,
// which means return empty data set. |mime_type| is mime type of the
// resource.
void AddResource(const char* resource,
const char* mime_type,
int resource_id);
private:
// Pointer back to the original profile.
Profile* profile_;
// Maps resource files to mime types an resource ids.
std::map<std::string, std::pair<std::string, int> > resource_map_;
DISALLOW_COPY_AND_ASSIGN(NewTabHTMLSource);
};
private:
FRIEND_TEST_ALL_PREFIXES(NewTabUITest, UpdateUserPrefsVersion);
// content::NotificationObserver implementation.
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// If |web_contents| has an NTP URL, emits a number of NTP statistics (like
// mouseovers counts) associated with |web_contents|, to be logged in UMA
// histograms.
void EmitNtpStatistics();
void OnShowBookmarkBarChanged();
void StartTimingPaint(content::RenderViewHost* render_view_host);
void PaintTimeout();
Profile* GetProfile() const;
content::NotificationRegistrar registrar_;
// The time when we started benchmarking.
base::TimeTicks start_;
// The last time we got a paint notification.
base::TimeTicks last_paint_;
// Scoping so we can be sure our timeouts don't outlive us.
base::OneShotTimer<NewTabUI> timer_;
// The preference version. This used for migrating prefs of the NTP.
static const int current_pref_version_ = 3;
// If the sync promo NTP bubble is being shown.
bool showing_sync_bubble_;
PrefChangeRegistrar pref_change_registrar_;
DISALLOW_COPY_AND_ASSIGN(NewTabUI);
};
#endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_UI_H_
|