$OpenBSD: patch-components_storage_monitor_storage_monitor_openbsd_cc,v 1.3 2016/03/06 10:51:14 robert Exp $
--- components/storage_monitor/storage_monitor_openbsd.cc.orig.port	Sat Mar  5 17:44:02 2016
+++ components/storage_monitor/storage_monitor_openbsd.cc	Sat Mar  5 17:49:32 2016
@@ -0,0 +1,54 @@
+// Copyright 2014 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.
+
+// StorageMonitorOpenBSD implementation.
+
+#include "components/storage_monitor/storage_monitor_openbsd.h"
+
+#include <stdio.h>
+
+#include <list>
+
+#include "base/bind.h"
+#include "base/metrics/histogram.h"
+#include "base/process/kill.h"
+#include "base/process/launch.h"
+#include "base/stl_util.h"
+#include "base/strings/string_number_conversions.h"
+#include "base/strings/string_util.h"
+#include "base/strings/utf_string_conversions.h"
+#include "components/storage_monitor/media_storage_util.h"
+#include "components/storage_monitor/removable_device_constants.h"
+#include "components/storage_monitor/storage_info.h"
+
+using content::BrowserThread;
+
+namespace storage_monitor {
+
+namespace {
+
+}  // namespace
+
+StorageMonitorOpenBSD::StorageMonitorOpenBSD() {
+  DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+}
+
+StorageMonitorOpenBSD::~StorageMonitorOpenBSD() {
+  DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+}
+
+void StorageMonitorOpenBSD::Init() {
+}
+
+bool StorageMonitorOpenBSD::GetStorageInfoForPath(
+    const base::FilePath& path,
+    StorageInfo* device_info) const {
+  return false; // TODO
+}
+
+StorageMonitor* StorageMonitor::CreateInternal() {
+  return new StorageMonitorOpenBSD();
+}
+
+} // namespace storage_monitor
