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

Unified Diff: chrome/browser/ui/libgtkui/gtk_ui.cc

Issue 2714053003: Fix GCC build for target 'all' (Closed)
Patch Set: Remove auto Created 3 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
Index: chrome/browser/ui/libgtkui/gtk_ui.cc
diff --git a/chrome/browser/ui/libgtkui/gtk_ui.cc b/chrome/browser/ui/libgtkui/gtk_ui.cc
index 3423149019994af5d16209e86d65ffba69da8332..ab2ff894d4610da10a388a02e4eb978a14b54d8e 100644
--- a/chrome/browser/ui/libgtkui/gtk_ui.cc
+++ b/chrome/browser/ui/libgtkui/gtk_ui.cc
@@ -710,7 +710,7 @@ std::unique_ptr<views::Border> GtkUi::CreateNativeBorder(
: nullptr);
}
- return gtk_border;
+ return std::unique_ptr<views::Border>(gtk_border.release());
Lei Zhang 2017/02/25 00:50:34 std::move again.
Tom (Use chromium acct) 2017/02/25 01:40:21 Done.
}
void GtkUi::AddWindowButtonOrderObserver(

Powered by Google App Engine
This is Rietveld 408576698