Chromium Code Reviews| Index: content/public/browser/web_contents_delegate.h |
| diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h |
| index d88b27c92d7d9f2cf553d18405631ae270fb038b..8769fc745655354ab8b3f8ef33efd0ce5d18faaa 100644 |
| --- a/content/public/browser/web_contents_delegate.h |
| +++ b/content/public/browser/web_contents_delegate.h |
| @@ -16,6 +16,7 @@ |
| #include "content/public/browser/navigation_type.h" |
| #include "content/public/common/media_stream_request.h" |
| #include "content/public/common/window_container_type.h" |
| +#include "third_party/WebKit/public/platform/WebDisplayMode.h" |
| #include "third_party/WebKit/public/web/WebDragOperation.h" |
| #include "third_party/skia/include/core/SkColor.h" |
| #include "ui/base/window_open_disposition.h" |
| @@ -380,6 +381,9 @@ class CONTENT_EXPORT WebContentsDelegate { |
| virtual bool IsFullscreenForTabOrPending( |
| const WebContents* web_contents) const; |
| + virtual blink::WebDisplayMode GetDisplayMode( |
|
scheib
2015/03/31 21:55:02
Comment here the specification DisplayMode represe
Mikhail
2015/04/08 11:09:37
Done.
|
| + const WebContents* web_contents) const; |
| + |
| // Register a new handler for URL requests with the given scheme. |
| // |user_gesture| is true if the registration is made in the context of a user |
| // gesture. |