~ubuntu-branches/ubuntu/vivid/monodevelop/vivid-proposed

« back to all changes in this revision

Viewing changes to src/addins/WindowsPlatform/WindowsAPICodePack/Core/PowerManagement/PowerPersonality.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2014-10-09 14:09:23 UTC
  • mfrom: (10.3.5)
  • Revision ID: package-import@ubuntu.com-20141009140923-s0d22u5f9kg8jvds
Tags: 5.5.0.227-1
* [b2c8331] Imported Upstream version 5.5.0.227 (Closes: #754316)
* [d210995] Delete obsolete patches
* [1b59ae1] Clear patch fizz, via quilt refresh
* [3dd147d] Fix error in configure.in which applies for tarball builds but 
  not git builds when running autoreconf
* [21c2a57] Remove Metacity references for good
* [3331661] Ensure NUnit 2.6.3 is installed
* [fd85c88] Build-depend on NuGet
* [a1ae116] Add WebKit to build dependencies, for Xwt moduleref resolution
* [9b4cf12] Since the GDB addin is integrated now, declare it in 
  debian/control
* [6231562] Correct NUnit links
* [3d2b693] Fix NuGet addin, by copying libs locally
* [74bf9a8] Don't symlink unused Mocks NUnit assembly
* [ade52b2] Ensure IKVM.Reflection is built with default (4.5) profile

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//Copyright (c) Microsoft Corporation.  All rights reserved.
 
2
 
 
3
namespace Microsoft.WindowsAPICodePack.ApplicationServices
 
4
{
 
5
    /// <summary>
 
6
    /// Specifies the supported power personalities.  
 
7
    /// </summary>
 
8
    public enum PowerPersonality
 
9
    {
 
10
        /// <summary>
 
11
        /// The power personality Guid does not match a known value.
 
12
        /// </summary>
 
13
        Unknown,
 
14
        /// <summary>
 
15
        /// Power settings designed to deliver maximum performance
 
16
        /// at the expense of power consumption savings.
 
17
        /// </summary>
 
18
        HighPerformance,
 
19
 
 
20
        /// <summary>
 
21
        /// Power settings designed consume minimum power
 
22
        /// at the expense of system performance and responsiveness.
 
23
        /// </summary>
 
24
        PowerSaver,
 
25
 
 
26
        /// <summary>
 
27
        /// Power settings designed to balance performance 
 
28
        /// and power consumption.
 
29
        /// </summary>
 
30
        Automatic
 
31
    }
 
32
 
 
33
}