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

Unified Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 697223003: MacViews: Get chrome/browser/ui/views/frame to compile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@constrained
Patch Set: Rebase. Add mac_views_browser build flag Created 6 years, 1 month 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
Index: chrome/browser/ui/views/frame/browser_view.h
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h
index 50cc41c8bcc7a33fa723b8e6838c5605a731883b..688f80c37337467cdccbcfa62ffdad4b12eb9733 100644
--- a/chrome/browser/ui/views/frame/browser_view.h
+++ b/chrome/browser/ui/views/frame/browser_view.h
@@ -349,6 +349,14 @@ class BrowserView : public BrowserWindow,
void Cut() override;
void Copy() override;
void Paste() override;
+
+#if defined(OS_MACOSX)
+ void EnterFullscreenWithChrome() override;
tapted 2014/11/04 02:33:43 I don't think this is the right long-term approach
Andre 2014/11/05 02:04:23 Looks tricky, I think we will need to do it in a s
+ void EnterFullscreenWithoutChrome() override;
+ bool IsFullscreenWithChrome() override;
+ bool IsFullscreenWithoutChrome() override;
+#endif
+
WindowOpenDisposition GetDispositionForPopupBounds(
const gfx::Rect& bounds) override;
FindBar* CreateFindBar() override;

Powered by Google App Engine
This is Rietveld 408576698