diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-09 20:06:49 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-09 20:06:49 +0000 |
commit | d2a866e1338ca8d0765fafb7aa72d368313c5d1d (patch) | |
tree | a261faee07c892ba6bec0aa96f1767a6bd5eff2c /remoting/host/desktop_process_main.cc | |
parent | 724141a9cc05b95f38601d22721c93adcd52fa4f (diff) | |
download | chromium_src-d2a866e1338ca8d0765fafb7aa72d368313c5d1d.zip chromium_src-d2a866e1338ca8d0765fafb7aa72d368313c5d1d.tar.gz chromium_src-d2a866e1338ca8d0765fafb7aa72d368313c5d1d.tar.bz2 |
Adding a missing header.
The official build was broken by r175584:
> host\desktop_process_main.cc(114): error C2039: 'InitializeCrashReporting' : is not a member of 'remoting'
> host\desktop_process_main.cc(114): error C3861: 'InitializeCrashReporting': identifier not found
Only the official builders were affected since remoting::InitializeCrashReporting() call is guarded by "#ifdef OFFICIAL_BUILD".
BUG=134694
Review URL: https://codereview.chromium.org/11827024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175865 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/desktop_process_main.cc')
-rw-r--r-- | remoting/host/desktop_process_main.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/remoting/host/desktop_process_main.cc b/remoting/host/desktop_process_main.cc index c7b6a0d..fa678de 100644 --- a/remoting/host/desktop_process_main.cc +++ b/remoting/host/desktop_process_main.cc @@ -17,6 +17,7 @@ #include "base/utf_string_conversions.h" #include "base/win/windows_version.h" #include "remoting/base/auto_thread_task_runner.h" +#include "remoting/base/breakpad.h" #include "remoting/host/desktop_process.h" #include "remoting/host/host_exit_codes.h" #include "remoting/host/logging.h" |