~josharenson/indicator-sound/fix_mute_notifications

« back to all changes in this revision

Viewing changes to src/accounts-service-privacy-settings.vala

  • Committer: CI bot
  • Author(s): Ted Gould
  • Date: 2014-10-09 13:32:42 UTC
  • mfrom: (446.6.13 silent-mode)
  • Revision ID: ps-jenkins@lists.canonical.com-20141009133242-jcvoplk3q98qxs2p
Show a silent mode checkbox Fixes: 1342151, 1367818
Approved by: PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2014 © Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *      Ted Gould <ted@canonical.com>
 
18
 */
 
19
 
 
20
[DBus (name = "com.ubuntu.touch.AccountsService.SecurityPrivacy")]
 
21
public interface AccountsServicePrivacySettings : Object {
 
22
        // properties 
 
23
        public abstract bool stats_welcome_screen {owned get; set;}
 
24
        public abstract bool messages_welcome_screen {owned get; set;}
 
25
}
 
26