This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const int kPortNumber = 52713; | |
class Connection : public InterprocessConnection | |
{ | |
public: | |
Connection(WaitableEvent& stop_signal) | |
: InterprocessConnection(false, 15), | |
stop_signal_(stop_signal) | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const int kPortNumber = 52713; | |
class Connection : public InterprocessConnection | |
{ | |
public: | |
Connection() | |
: InterprocessConnection(false, 15) | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int _tmain(int argc, _TCHAR* argv[]) | |
{ | |
base::AtExitManager exit_manager; | |
CommandLine::Init(0, NULL); | |
base::FilePath log_dir; | |
PathService::Get(base::DIR_EXE, &log_dir); | |
base::FilePath log_file = log_dir.Append(kLogFile); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(int argc, char** argv) | |
{ | |
return 0; | |
} |