Mac Breakpad integration for Chromoting Host (disabled for now)

This adds Breakpad initialization, and the necessary Breakpad
components to the Me2Me host bundle.

Tested by tweaking the code to enable Breakpad, and to upload to
a test server instead of the production URL.

BUG=136579


Review URL: https://chromiumcodereview.appspot.com/11308267

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170369 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/remoting/host/usage_stats_consent_mac.cc b/remoting/host/usage_stats_consent_mac.cc
new file mode 100644
index 0000000..f256415
--- /dev/null
+++ b/remoting/host/usage_stats_consent_mac.cc
@@ -0,0 +1,33 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "remoting/host/usage_stats_consent.h"
+
+#include <string>
+
+#include "base/logging.h"
+
+namespace remoting {
+
+bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy) {
+  *set_by_policy = false;
+
+  // For now, leave Breakpad disabled.
+  // TODO(lambroslambrou): Enable it for users who have given consent.
+  *allowed = false;
+  return true;
+}
+
+bool IsUsageStatsAllowed() {
+  bool allowed;
+  bool set_by_policy;
+  return GetUsageStatsConsent(&allowed, &set_by_policy) && allowed;
+}
+
+bool SetUsageStatsConsent(bool allowed) {
+  NOTIMPLEMENTED();
+  return false;
+}
+
+}  // namespace remoting