| Index: components/ui_devtools/devtools_server.h
|
| diff --git a/components/ui_devtools/devtools_server.h b/components/ui_devtools/devtools_server.h
|
| index 3f6ca85ba656f1fd349e96f348d48a1d863ec8c0..4060184fc108bc5905ec9f8e9a21210753319fac 100644
|
| --- a/components/ui_devtools/devtools_server.h
|
| +++ b/components/ui_devtools/devtools_server.h
|
| @@ -20,19 +20,18 @@
|
| namespace ui {
|
| namespace devtools {
|
|
|
| -class UI_DEVTOOLS_EXPORT UiDevToolsServer
|
| - : public NON_EXPORTED_BASE(net::HttpServer::Delegate) {
|
| +class UiDevToolsServer : public net::HttpServer::Delegate {
|
| public:
|
| ~UiDevToolsServer() override;
|
|
|
| // Returns an empty unique_ptr if ui devtools flag isn't enabled or if a
|
| // server instance has already been created.
|
| - static std::unique_ptr<UiDevToolsServer> Create(
|
| + static UI_DEVTOOLS_EXPORT std::unique_ptr<UiDevToolsServer> Create(
|
| scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner);
|
|
|
| // Returns a list of attached UiDevToolsClient name + URL
|
| using NameUrlPair = std::pair<std::string, std::string>;
|
| - static std::vector<NameUrlPair> GetClientNamesAndUrls();
|
| + static UI_DEVTOOLS_EXPORT std::vector<NameUrlPair> GetClientNamesAndUrls();
|
|
|
| void AttachClient(std::unique_ptr<UiDevToolsClient> client);
|
| void SendOverWebSocket(int connection_id, const String& message);
|
|
|