summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorDavid King <amigadave@amigadave.com>2017-07-31 12:40:30 +0100
committerDavid King <amigadave@amigadave.com>2017-08-08 06:55:41 +0100
commite55d38a41961522f7470cec72c7629b8dd4091df (patch)
treec5c5c1c12112c3c2db89c70a2ed2ed1569f0829c /data
parent910d8eaa5db17f2e8906d9171b23346ff0c9a34e (diff)
downloadcheese-e55d38a41961522f7470cec72c7629b8dd4091df.tar.gz
Remove camera service
It was an experiment, but in future PipeWire will be used instead, so it is no longer needed.
Diffstat (limited to 'data')
-rw-r--r--data/org.gnome.Camera.service.in3
-rw-r--r--data/org.gnome.Camera.xml50
2 files changed, 0 insertions, 53 deletions
diff --git a/data/org.gnome.Camera.service.in b/data/org.gnome.Camera.service.in
deleted file mode 100644
index de474f02..00000000
--- a/data/org.gnome.Camera.service.in
+++ /dev/null
@@ -1,3 +0,0 @@
-[D-BUS Service]
-Name=org.gnome.Camera
-Exec=@libexecdir@/gnome-camera-service
diff --git a/data/org.gnome.Camera.xml b/data/org.gnome.Camera.xml
deleted file mode 100644
index 4a6926cf..00000000
--- a/data/org.gnome.Camera.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
-<node name="/org/gnome/Camera">
- <!-- org.gnome.Camera:
- @short_description: Use the available camera devices
-
- The camera interface is used to take photos with the available camera
- devices.
- -->
- <interface name="org.gnome.Camera.Manager">
- <!-- GetClient:
- @chooser: The object path of a new client object
- @short_description: Get a client object for showing a photo dialog
-
- Use the obtained client object to show a dialog for taking photos
- and videos using a webcam.
- -->
- <method name="GetClient">
- <arg name="client" type="o" direction="out"/>
- </method>
- </interface>
-
- <!-- org.gnome.Camera.Client:
- @short_description: Play images and videos from a camera
- -->
- <interface name="org.gnome.Camera.Client">
- <!-- ImageData:
- @short_description: Image data for photo from webcam
-
- The PNG image data, Base64-encoded, from the photo taken by the
- webcam, and cropped by the user.
- -->
- <property name="ImageData" type="s" access="read">
- <annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="invalidates"/>
- </property>
- <!-- ShowChooser:
- @short_description: Show the webcam chooser dialog
- -->
- <method name="ShowChooser">
- </method>
- <!-- UserDone:
- @photo_taken: Whether a photo was taken or not
- @image_data: The image data as a Base64-encoded PNG, or empty
- @short_description: Indicates that the dialog was closed
- -->
- <signal name="UserDone">
- <arg name="photo_taken" type="b" />
- <arg name="image_data" type="s" />
- </signal>
- </interface>
-</node>