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

Unified Diff: ui/views/widget/native_widget_mac.mm

Issue 1927203003: Add support for X11 workspaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed GetSavedWindowWorkspace, put command line code into browser_frame.cc Created 4 years, 8 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
Index: ui/views/widget/native_widget_mac.mm
diff --git a/ui/views/widget/native_widget_mac.mm b/ui/views/widget/native_widget_mac.mm
index 524e94a0549dc975424142d22aaf86a2b9b36af5..bfde5f6305812b5046c5e364c69df5170d68af90 100644
--- a/ui/views/widget/native_widget_mac.mm
+++ b/ui/views/widget/native_widget_mac.mm
@@ -306,6 +306,10 @@ gfx::Rect NativeWidgetMac::GetRestoredBounds() const {
return bridge_ ? bridge_->GetRestoredBounds() : gfx::Rect();
}
+std::string NativeWidgetMac::GetWorkspace() const {
+ return std::string();
+}
+
void NativeWidgetMac::SetBounds(const gfx::Rect& bounds) {
if (bridge_)
bridge_->SetBounds(bounds);

Powered by Google App Engine
This is Rietveld 408576698