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

Unified Diff: ui/views/cocoa/drag_drop_client_mac.mm

Issue 2039723002: Add missing curlies in CocoaDragDropDataProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: indenty Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/cocoa/drag_drop_client_mac.mm
diff --git a/ui/views/cocoa/drag_drop_client_mac.mm b/ui/views/cocoa/drag_drop_client_mac.mm
index 737a0a0e4b0ce88521a765225da44717bff18179..ed85acbfe9eff246b8cbfd2aef8c763214ace781 100644
--- a/ui/views/cocoa/drag_drop_client_mac.mm
+++ b/ui/views/cocoa/drag_drop_client_mac.mm
@@ -19,9 +19,9 @@
- (id)initWithPasteboard:(NSPasteboard*)pasteboard;
@end
-@implementation CocoaDragDropDataProvider
-
-std::unique_ptr<ui::OSExchangeData> data_;
+@implementation CocoaDragDropDataProvider {
+ std::unique_ptr<ui::OSExchangeData> data_;
+}
- (id)initWithData:(const ui::OSExchangeData&)data {
if ((self = [super init])) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698