Skip to content

Commit 37561cb

Browse files
committed
Fix for issue 934: added URL scheme support for MAC - compile error fix
1 parent c45f686 commit 37561cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/browser/app_controller_mac.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ - (void)handleGetURLEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppl
115115
// App is not ready yet, add the URL to the command line arguments.
116116
// This happens when the app is started by opening a link with the registered URL.
117117
if (content::Shell::windows().size() == 0) {
118-
CommandLine::ForCurrentProcess()->AppendArg([urlString UTF8String]);
119-
CommandLine::ForCurrentProcess()->FixOrigArgv4Finder([urlString UTF8String]);
118+
base::CommandLine::ForCurrentProcess()->AppendArg([urlString UTF8String]);
119+
base::CommandLine::ForCurrentProcess()->FixOrigArgv4Finder([urlString UTF8String]);
120120
}
121121
}
122122
}

0 commit comments

Comments
 (0)