Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3587)

Unified Diff: chrome/browser/extensions/api/cast_devices_private/cast_devices_private_api.cc

Issue 1291113002: Cast extension private API for ChromeOS system tray. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/cast_devices_private/cast_devices_private_api.cc
diff --git a/chrome/browser/extensions/api/cast_devices_private/cast_devices_private_api.cc b/chrome/browser/extensions/api/cast_devices_private/cast_devices_private_api.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8d175026e8685d6209fd4f26ec9d65c9e54cb799
--- /dev/null
+++ b/chrome/browser/extensions/api/cast_devices_private/cast_devices_private_api.cc
@@ -0,0 +1,94 @@
+// Copyright 2015 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 "chrome/browser/extensions/api/cast_devices_private/cast_devices_private_api.h"
+
+#include "base/lazy_instance.h"
+#include "base/strings/utf_string_conversions.h"
+#include "chrome/common/extensions/api/cast_devices_private.h"
+
+namespace extensions {
+
+static base::LazyInstance<
+ BrowserContextKeyedAPIFactory<CastDeviceUpdateListeners>> g_factory =
+ LAZY_INSTANCE_INITIALIZER;
+
+// static
+BrowserContextKeyedAPIFactory<CastDeviceUpdateListeners>*
+CastDeviceUpdateListeners::GetFactoryInstance() {
+ return g_factory.Pointer();
+}
+
+// static
+CastDeviceUpdateListeners* CastDeviceUpdateListeners::Get(
+ content::BrowserContext* context) {
+ return BrowserContextKeyedAPIFactory<CastDeviceUpdateListeners>::Get(context);
+}
+
+CastDeviceUpdateListeners::CastDeviceUpdateListeners(
+ content::BrowserContext* context) {}
+CastDeviceUpdateListeners::~CastDeviceUpdateListeners() {}
+
+ash::CastConfigDelegate::DeviceUpdateSubscription
+CastDeviceUpdateListeners::RegisterCallback(
+ const ash::CastConfigDelegate::ReceiversAndActivitesCallback& callback) {
+ return callback_list_.Add(callback);
+}
+
+void CastDeviceUpdateListeners::NotifyCallbacks(
+ const std::vector<ash::CastConfigDelegate::ReceiverAndActivity>& devices) {
+ callback_list_.Notify(devices);
+}
+
+static ash::CastConfigDelegate::Receiver ConvertType(
Ken Rockot(use gerrit already) 2015/08/14 23:20:09 instead of using static for these internal functio
jdufault 2015/08/15 00:04:52 Done.
+ const api::cast_devices_private::Receiver& receiver) {
+ ash::CastConfigDelegate::Receiver result;
+ result.id = receiver.id;
+ result.name = base::UTF8ToUTF16(receiver.name);
+ return result;
+}
+
+static ash::CastConfigDelegate::Activity ConvertType(
+ const api::cast_devices_private::Activity& activity) {
+ ash::CastConfigDelegate::Activity result;
+ result.id = activity.id;
+ result.title = base::UTF8ToUTF16(activity.title);
+ result.tab_id = activity.tab_id;
+ return result;
+}
+
+static ash::CastConfigDelegate::ReceiverAndActivity ConvertType(
+ const api::cast_devices_private::Receiver& receiver,
+ const api::cast_devices_private::Activity* activity) {
+ ash::CastConfigDelegate::ReceiverAndActivity result;
+ result.receiver = ConvertType(receiver);
+ if (activity)
+ result.activity = ConvertType(*activity);
+ return result;
+}
+
+CastDevicesPrivateUpdateDevicesFunction::
+ CastDevicesPrivateUpdateDevicesFunction() {}
+
+CastDevicesPrivateUpdateDevicesFunction::
+ ~CastDevicesPrivateUpdateDevicesFunction() {}
+
+bool CastDevicesPrivateUpdateDevicesFunction::RunAsync() {
+ auto params =
+ api::cast_devices_private::UpdateDevices::Params::Create(*args_);
+
+ std::vector<ash::CastConfigDelegate::ReceiverAndActivity> devices;
+ for (linked_ptr<api::cast_devices_private::ReceiverActivity> device :
+ params->devices) {
+ devices.push_back(ConvertType(device->receiver, device->activity.get()));
+ }
+
+ CastDeviceUpdateListeners* storage =
+ CastDeviceUpdateListeners::Get(browser_context());
+ storage->NotifyCallbacks(devices);
+
+ return true;
+}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698