Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2905)

Unified Diff: content/renderer/presentation/presentation_dispatcher.h

Issue 887563006: [Reland] Support listening for available screens for multiple (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed non_export_base from RenderFrameObserver Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/presentation_service_delegate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/presentation/presentation_dispatcher.h
diff --git a/content/renderer/presentation/presentation_dispatcher.h b/content/renderer/presentation/presentation_dispatcher.h
index 12e72ad2c2565293e45ee6b3782fc6d2e5a38d8a..caf1840f2e0b5eab0ae6dfb0b6cbbe6b6e50d779 100644
--- a/content/renderer/presentation/presentation_dispatcher.h
+++ b/content/renderer/presentation/presentation_dispatcher.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_
#define CONTENT_RENDERER_PRESENTATION_PRESENTATION_DISPATCHER_H_
+#include "base/compiler_specific.h"
+#include "content/common/content_export.h"
#include "content/common/presentation/presentation_service.mojom.h"
#include "content/public/renderer/render_frame_observer.h"
#include "third_party/WebKit/public/platform/modules/presentation/WebPresentationClient.h"
@@ -13,9 +15,9 @@ namespace content {
// PresentationDispatcher is a delegate for Presentation API messages used by
// Blink. It forwards the calls to the Mojo PresentationService.
-class PresentationDispatcher
+class CONTENT_EXPORT PresentationDispatcher
: public RenderFrameObserver,
- public blink::WebPresentationClient {
+ public NON_EXPORTED_BASE(blink::WebPresentationClient) {
public:
explicit PresentationDispatcher(RenderFrame* render_frame);
~PresentationDispatcher() override;
« no previous file with comments | « content/public/browser/presentation_service_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698