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
|
// Copyright 2019 The Chromium Authors
// 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_TAB_STRIP_TAB_STRIP_UI_H_
#define CHROME_BROWSER_UI_WEBUI_TAB_STRIP_TAB_STRIP_UI_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/tabs/tab_strip_api/tab_strip_api.mojom.h"
#include "chrome/browser/ui/webui/tab_strip/tab_strip.mojom.h"
#include "chrome/browser/ui/webui/tab_strip/thumbnail_tracker.h"
#include "chrome/browser/ui/webui/webui_load_timer.h"
#include "chrome/common/webui_url_constants.h"
#include "content/public/browser/web_ui_controller.h"
#include "content/public/browser/webui_config.h"
#include "content/public/common/url_constants.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "ui/webui/mojo_web_ui_controller.h"
#include "ui/webui/resources/cr_components/color_change_listener/color_change_listener.mojom.h"
namespace ui {
class ColorChangeHandler;
} // namespace ui
class Browser;
class TabStripPageHandler;
class TabStripUIEmbedder;
// These data types must be in all lowercase.
inline constexpr char16_t kWebUITabIdDataType[] =
u"application/vnd.chromium.tab";
inline constexpr char16_t kWebUITabGroupIdDataType[] =
u"application/vnd.chromium.tabgroup";
class TabStripUI;
class TabStripUIConfig : public content::DefaultWebUIConfig<TabStripUI> {
public:
TabStripUIConfig()
: DefaultWebUIConfig(content::kChromeUIScheme,
chrome::kChromeUITabStripHost) {}
};
// The WebUI version of the tab strip in the browser. It is currently only
// supported on ChromeOS in tablet mode.
class TabStripUI : public ui::MojoWebUIController,
public tab_strip::mojom::PageHandlerFactory {
public:
explicit TabStripUI(content::WebUI* web_ui);
TabStripUI(const TabStripUI&) = delete;
TabStripUI& operator=(const TabStripUI&) = delete;
~TabStripUI() override;
// Instantiates the implementor of the mojom::PageHandlerFactory mojo
// interface passing the pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<tab_strip::mojom::PageHandlerFactory> receiver);
// Instantiates the implementor of the mojom::PageHandler mojo interface
// passing the pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<color_change_listener::mojom::PageHandler>
receiver);
// Instantiates the implementor of the mojom::TabStripService mojo
// interface passing the pending receiver that will be internally bound.
void BindInterface(
mojo::PendingReceiver<tabs_api::mojom::TabStripService> receiver);
// Initialize TabStripUI with its embedder and the Browser it's running in.
// Must be called exactly once. The WebUI won't work until this is called.
// |Deinitialize| is called during |embedder|'s destructor. It release the
// references taken previously and release the objects depending on them.
void Initialize(Browser* browser, TabStripUIEmbedder* embedder);
void Deinitialize();
// The embedder should call this whenever the result of
// Embedder::GetLayout() changes.
void LayoutChanged();
// The embedder should call this whenever the tab strip gains keyboard focus.
void ReceivedKeyboardFocus();
private:
// tab_strip::mojom::PageHandlerFactory
void CreatePageHandler(
mojo::PendingRemote<tab_strip::mojom::Page> page,
mojo::PendingReceiver<tab_strip::mojom::PageHandler> receiver) override;
WebuiLoadTimer webui_load_timer_;
std::unique_ptr<TabStripPageHandler> page_handler_;
std::unique_ptr<ui::ColorChangeHandler> color_provider_handler_;
mojo::Receiver<tab_strip::mojom::PageHandlerFactory> page_factory_receiver_{
this};
raw_ptr<Browser> browser_ = nullptr;
raw_ptr<TabStripUIEmbedder> embedder_ = nullptr;
WEB_UI_CONTROLLER_TYPE_DECL();
};
#endif // CHROME_BROWSER_UI_WEBUI_TAB_STRIP_TAB_STRIP_UI_H_
|