Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Fixing mac debug build #678

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions appshell/cefclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#include "config.h"

CefRefPtr<ClientHandler> g_handler;
int g_remote_debugging_port = 0;
std::string g_get_remote_debugging_port_error;
extern int g_remote_debugging_port;
extern std::string g_get_remote_debugging_port_error;

#ifdef OS_WIN
bool g_force_enable_acc = false;
Expand Down
2 changes: 2 additions & 0 deletions appshell/client_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ void ClientHandler::OnBeforeClose(CefRefPtr<CefBrowser> browser) {
}

std::vector<CefString> gDroppedFiles;
int g_remote_debugging_port = 0;
std::string g_get_remote_debugging_port_error;

#ifndef OS_LINUX
bool ClientHandler::OnDragEnter(CefRefPtr<CefBrowser> browser,
Expand Down