summaryrefslogtreecommitdiffstats
path: root/chromeos
Commit message (Collapse)AuthorAgeFilesLines
* Add NetworkEventLog and NetworkEventLogSource to log chromeos network eventsstevenjb@chromium.org2012-11-216-5/+369
| | | | | | | | | | | | | | This also extracts about_network from about_ui for the chrome://network UI, updating it for NetworkState and NetworkEventLog. Additionally network event logs (and a dbus summary) are added to feedback reports) BUG=161369 For chrome/browser/ui/webui/: TBR=jhawkins@chromium.org Review URL: https://chromiumcodereview.appspot.com/11416041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168946 0039d316-1c4b-4281-b951-d872f2087c98
* Added cloud_policy_browsertest.cc, that tests the cloud policy stack(s) ↵joaodasilva@chromium.org2012-11-201-2/+6
| | | | | | | | | | | against the testserver. BUG=108928 Review URL: https://chromiumcodereview.appspot.com/11414007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168807 0039d316-1c4b-4281-b951-d872f2087c98
* Committing new LKGM version 3230.0.0 for chromeos.sosa@google.com2012-11-201-0/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168736 0039d316-1c4b-4281-b951-d872f2087c98
* Make power state override refcounted.rkc@chromium.org2012-11-203-17/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | In the case of power state override being created and immidiatelly destructed, we'll have a scenario in which the correct power state request won't get cancelled. e.g., . User creates PowerStateOverride instance -> We call RequestPowerStateOverride - we wait for the callback from ChromeOS to get our request ID . User deletes PowerStateOverride instance -> We call CancelPowerStateOverride with a 0 request ID . We destruct, invalidating our weak pointers . Callback from RequestPowerStateOverride never lands since the weakptr is invalidated - Power state override remains in effect for the next 10 minutes. This has now changed to, . User creates PowerStateOverride instance -> We call RequestPowerStateOverride, this increments our reference count to 2 - we wait for the callback from ChromeOS to get our request ID . User releases his refernce to PowerStateOverride instance -> We decrement our reference count to 1 . RequestPowerStateOverride returns, giving us our RequestID, and decrements our refernce count to 0 . Destructor gets called, which does a CancelPowerStateOverride with the correct request ID - The PowerStateOverride is cancelled R=derat@chromium.org BUG=151732 Review URL: https://codereview.chromium.org/11358222 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168644 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Remove redundant comments in DBusThreadManager.derat@chromium.org2012-11-192-195/+19
| | | | | | | | | BUG=none Review URL: https://chromiumcodereview.appspot.com/11308103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168572 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 168563 - Wire up local account policy DBus calls in SessionManagerClient.sreeram@chromium.org2012-11-193-84/+9
| | | | | | | | | | | | | | | | BUG=chromium-os:35715 TEST=None Review URL: https://chromiumcodereview.appspot.com/11360191 You had a green linux_chromeos try run, but unfortunately, clang is pickier: http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20%28Clang%20dbg%29/builds/24522 TBR=mnissler@chromium.org Review URL: https://codereview.chromium.org/11308106 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168567 0039d316-1c4b-4281-b951-d872f2087c98
* Wire up local account policy DBus calls in SessionManagerClient.mnissler@chromium.org2012-11-193-9/+84
| | | | | | | | | | BUG=chromium-os:35715 TEST=None Review URL: https://chromiumcodereview.appspot.com/11360191 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168563 0039d316-1c4b-4281-b951-d872f2087c98
* Fix: infolist requries description title.nona@chromium.org2012-11-195-21/+47
| | | | | | | | | | | | | Sorry I misunderstand the infolist spec, infolist requires title field. I split description field into description_title and description_body. BUG=129403 TEST=ran chromeos_unittests Review URL: https://chromiumcodereview.appspot.com/11362111 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168544 0039d316-1c4b-4281-b951-d872f2087c98
* Extends IBusObject to handle attachment field.nona@chromium.org2012-11-199-306/+229
| | | | | | | | | | | With this CL, IBusObjectReader/IBusObjectWriter can read/write attachment field in IBusObject header field. BUG=140186 TEST=ran chromeos_unittests Review URL: https://chromiumcodereview.appspot.com/11361210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168522 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r168414 "Make power state override refcounted."maruel@chromium.org2012-11-173-35/+17
| | | | | | | | | | | | | Revert r168420 "chromeos/power: Refcounted types should not have public destructors." Broke linux_chromeos_clang. TBR=tfarina@chromium.org,derat@chromium.org,rkc@chromium.org BUG=123295 Review URL: https://codereview.chromium.org/11415041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168421 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos/power: Refcounted types should not have public destructors.tfarina@chromium.org2012-11-171-5/+6
| | | | | | | | | | | This was broken this CL: https://chromiumcodereview.appspot.com/11358222/ BUG=123295 TBR=derat@chromium.org,rkc@chromium.org Review URL: https://codereview.chromium.org/11413056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168420 0039d316-1c4b-4281-b951-d872f2087c98
* Make power state override refcounted.rkc@chromium.org2012-11-173-16/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the case of power state override being created and immidiatelly destructed, we'll have a scenario in which the correct power state request won't get cancelled. e.g., . User creates PowerStateOverride instance -> We call RequestPowerStateOverride - we wait for the callback from ChromeOS to get our request ID . User deletes PowerStateOverride instance -> We call CancelPowerStateOverride with a 0 request ID . We destruct, invalidating our weak pointers . Callback from RequestPowerStateOverride never lands since the weakptr is invalidated - Power state override remains in effect for the next 10 minutes. This has now changed to, . User creates PowerStateOverride instance -> We call RequestPowerStateOverride, this increments our reference count to 2 - we wait for the callback from ChromeOS to get our request ID . User releases his refernce to PowerStateOverride instance -> We decrement our reference count to 1 . RequestPowerStateOverride returns, giving us our RequestID, and decrements our refernce count to 0 . Destructor gets called, which does a CancelPowerStateOverride with the correct request ID - The PowerStateOverride is cancelled R=derat@chromium.org BUG=151732 Review URL: https://chromiumcodereview.appspot.com/11358222 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168414 0039d316-1c4b-4281-b951-d872f2087c98
* Adding network configuration handler classgspencer@chromium.org2012-11-174-0/+712
| | | | | | | | | | | | | that will eventually replace the NetworkLibrary method of configuring networks. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/11260047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168338 0039d316-1c4b-4281-b951-d872f2087c98
* Add --enable-network-state-handler flagstevenjb@chromium.org2012-11-165-11/+52
| | | | | | | | | | | | Adds static Initialize() and Shutdown() metgods for NetworkStateHandler. BUG=none For about_flags: TBR=ben@chromium.org Review URL: https://codereview.chromium.org/11316032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168232 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Listen for lock key from within Chrome.derat@chromium.org2012-11-152-7/+0
| | | | | | | | | | | | | | | | We were formerly getting notified via D-Bus signal from the power manager whenever the lock key on external Chrome OS keyboards (F13) was pressed or released. This change makes Chrome instead listen for F13 directly, which will allow apps to override the F13 key when desired. BUG=153951 TEST=lock key still works as before Review URL: https://chromiumcodereview.appspot.com/11420009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168022 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Respond to liveness requests from session manager.derat@chromium.org2012-11-151-0/+13
| | | | | | | | | | | | Makes Chrome listen for "LivenessRequested" D-Bus signals sent by the session manager and respond by calling the session manager's "HandleLivenessConfirmed" method. BUG=chromium-os:35729 Review URL: https://codereview.chromium.org/11360252 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167925 0039d316-1c4b-4281-b951-d872f2087c98
* Try 2 - [Media Gallery][ChromeOS] Improve device media gallery names.kmadhusu@chromium.org2012-11-152-6/+15
| | | | | | | | | | | | | | | | | | | | | | | | | (1) When a SD card is attached, report a more generic string like "SD card" on the media permissions dialog. (2) When the attached device is not a SD card or when a sub folder of the device is selected as a media gallery, report the gallery name in the following format: <Device_storage_size> <Selected_sub_folder_gallery_name> <Volume_Name> <(Vendor_Name, Model_Name)> Sample gallery names: (1) 1GB TEST_USB (2) 4GB DCIM - RED_USB (3) 8KB PHOTOS - (TESTCOMPANY, A101) (4) 4GB SD Card (5) 16MB SD Card Original Review CL: http://codereview.chromium.org/11366144/ Reverted CL: https://codereview.chromium.org/11363236/ BUG=159671, 158600 TEST=none TBR=oshima@chromium.org Review URL: https://chromiumcodereview.appspot.com/11365258 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167835 0039d316-1c4b-4281-b951-d872f2087c98
* Small refactoring in DiskMountManager (event reporting; format method).tbarzic@chromium.org2012-11-1510-174/+913
| | | | | | | | | | | | | | | | | | | | | | | | | | * Rename DiskMountManager::Observer methods to On____Event format. * Break up DiskMountManagerEventType enum. * Add separate observer method for formatting events. * Pass formatting event success using bool instead of adding '!' in front of the path (but only in events from DiskMountManager; will remove it from CrosDisksClient events in another patch). * Add unit tests for formatting handling in DiskMountManager. (TODO: add more tests) TBR:vandebo@chromium.org (for mechanical changes in chrome/browser/system_monitor) BUG=157587, 126815 TEST=manual: formatting works (and Formatting pending notification goes away) chromeos_unittests::DiskMountManagerTest.* Review URL: https://chromiumcodereview.appspot.com/11365142 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167799 0039d316-1c4b-4281-b951-d872f2087c98
* Add DBusStatistics and DBusLogSource to log and show dbus statsstevenjb@chromium.org2012-11-141-0/+3
| | | | | | | | | | | | | | | The intention of this is to provide low overhead detailed logging to ensure that dbus call counts remain reasonable as we migrate NetworkLibrary and other systtems from src/chrome to src/chromeos. We already have UMA stats which provide high level numbers that we can watch, but this will make detailed debugging available for advanced users and in feedback reports. BUG=159635 For chrome/chrome_browser_chromeos.gypi: TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/11363173 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167742 0039d316-1c4b-4281-b951-d872f2087c98
* Move eintr_wrapper.h from base to base/posixbrettw@chromium.org2012-11-141-1/+1
| | | | | | Review URL: https://codereview.chromium.org/11366229 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167739 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 167606 - [Media Gallery][ChromeOS] Improve device media gallery names.hbono@chromium.org2012-11-142-15/+6
| | | | | | | | | | | | | | | | | | | | | | | | | (1) When a SD card is attached, report a more generic string like "SD card" on the media permissions dialog. (2) When the attached device is not a SD card or when a sub folder of the device is selected as a media gallery, report the gallery name in the following format: <Device_storage_size> <Selected_sub_folder_gallery_name> <Volume_Name> <(Vendor_Name, Model_Name)> Sample gallery names: (1) 1GB TEST_USB (2) 4GB DCIM - RED_USB (3) 8KB PHOTOS - (TESTCOMPANY, A101) (4) 4GB SD Card (5) 16MB SD Card BUG=159671,158600 TEST=none Review URL: https://chromiumcodereview.appspot.com/11366144 TBR=kmadhusu@chromium.org Review URL: https://codereview.chromium.org/11363236 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167609 0039d316-1c4b-4281-b951-d872f2087c98
* [Media Gallery][ChromeOS] Improve device media gallery names.kmadhusu@chromium.org2012-11-142-6/+15
| | | | | | | | | | | | | | | | | | | | | | (1) When a SD card is attached, report a more generic string like "SD card" on the media permissions dialog. (2) When the attached device is not a SD card or when a sub folder of the device is selected as a media gallery, report the gallery name in the following format: <Device_storage_size> <Selected_sub_folder_gallery_name> <Volume_Name> <(Vendor_Name, Model_Name)> Sample gallery names: (1) 1GB TEST_USB (2) 4GB DCIM - RED_USB (3) 8KB PHOTOS - (TESTCOMPANY, A101) (4) 4GB SD Card (5) 16MB SD Card BUG=159671,158600 TEST=none Review URL: https://chromiumcodereview.appspot.com/11366144 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167606 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Remove unused CrosAddIPConfig/CrosRemoveIPConfig functionshashimoto@chromium.org2012-11-138-95/+0
| | | | | | | | | BUG=126964 TEST=build Review URL: https://chromiumcodereview.appspot.com/11361211 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167354 0039d316-1c4b-4281-b951-d872f2087c98
* Invoke DebugDaemonClientStubImpl callbacks with PostTask.stevenjb@chromium.org2012-11-101-7/+15
| | | | | | | | | BUG=160181 Review URL: https://chromiumcodereview.appspot.com/11364169 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167015 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Update calls froms RunAllPending() to RunUntilIdle().tfarina@chromium.org2012-11-0912-69/+69
| | | | | | | | | | | BUG=131220 TEST=chromeos_unittests TBR=oshima@chromium.org Review URL: https://chromiumcodereview.appspot.com/11275231 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166930 0039d316-1c4b-4281-b951-d872f2087c98
* Only initialize DBusThreadManager exactly once.stevenjb@chromium.org2012-11-082-13/+26
| | | | | | | | | | | | | | Also only shutdown initialized services in ChromeBrowserMainParts to reduce warning spam. BUG=159854 For chrome/browser: TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/11332005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166769 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 166406 - Extends IBusPanelService to register itself as well known namenona@chromium.org2012-11-082-13/+0
| | | | | | | | | | | | | | This patch set depends on http://codereview.chromium.org/11342040/ BUG=158264 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11361005 TBR=nona@chromium.org Review URL: https://codereview.chromium.org/11377048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166605 0039d316-1c4b-4281-b951-d872f2087c98
* Added ClearProperties to the Shill service client.gspencer@chromium.org2012-11-079-14/+191
| | | | | | | | | | | | | Must be committed only after the corresponding service_constants.h change goes in. BUG=chromium-os:35900 TEST=built Review URL: https://chromiumcodereview.appspot.com/11364089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166427 0039d316-1c4b-4281-b951-d872f2087c98
* Extends IBusPanelService to register itself as well known namenona@chromium.org2012-11-072-0/+13
| | | | | | | | | | | This patch set depends on http://codereview.chromium.org/11342040/ BUG=158264 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11361005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166406 0039d316-1c4b-4281-b951-d872f2087c98
* Fix memory leak in IBusConfigClient unittestsnona@chromium.org2012-11-071-3/+3
| | | | | | | | | | BUG=159726 TEST=ran chromeos_unittests with valgrind Review URL: https://chromiumcodereview.appspot.com/11369113 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166400 0039d316-1c4b-4281-b951-d872f2087c98
* Support surrounding text feature.nona@chromium.org2012-11-072-1/+19
| | | | | | | | | | | | Some Thai input requires surrounding text feature. This patch implement full-spec surrounding text feature for ibus. BUG=158111 TEST=Ran ui_unittests and manually done on lumpy. Review URL: https://chromiumcodereview.appspot.com/11275148 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166383 0039d316-1c4b-4281-b951-d872f2087c98
* Extends DBusThreadManger to handle IBusPanelServicenona@chromium.org2012-11-0710-4/+45
| | | | | | | | | | | | | This patch is 2nd try of http://codereview.chromium.org/11366012/ - Introudced ibus namespace for IBusPanelService which collisions original ibus's class name. BUG=158264 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11365104 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166382 0039d316-1c4b-4281-b951-d872f2087c98
* Add chromeos::NetworkStateManager to src/chromeos/network.stevenjb@chromium.org2012-11-0722-63/+2395
| | | | | | | | | | | | The intention for this class is to provide up-to-date state information about the network for the majority of the network related UI. It should also serve as a foundation for classes monitoring the state of the active network. This code is not designed to provide detailed information about specific network service or device properties, not should it provide the ability to set (configure) those properties. BUG=154072 Review URL: https://chromiumcodereview.appspot.com/11192024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166375 0039d316-1c4b-4281-b951-d872f2087c98
* Set the correct initial output stateoshima@chromium.org2012-11-061-5/+16
| | | | | | | | | | | | | - This also fixes the issue where external display can be off after sign out. - Add UMA stats for configuration failures. BUG=159533, 159084 TEST=manual: see bugs for repro step. Review URL: https://chromiumcodereview.appspot.com/11365102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166258 0039d316-1c4b-4281-b951-d872f2087c98
* Add annotation/description member into LookupTable entry.nona@chromium.org2012-11-062-3/+15
| | | | | | | | | | | | We can't write unittest for these because AppendIBusText does not support attachment field. BUG=129403 TEST=ran chromeos_unittests and manually done Review URL: https://chromiumcodereview.appspot.com/11365105 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166183 0039d316-1c4b-4281-b951-d872f2087c98
* Implement IBusConfigClient.nona@chromium.org2012-11-064-1/+447
| | | | | | | | | | | | | This class is compiled and tested but not used in production binary at this moment. This patch set depends http://codereview.chromium.org/11271040/. BUG=158265 TEST=ran chromeos_unittest, unit_tests Review URL: https://chromiumcodereview.appspot.com/11273114 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166176 0039d316-1c4b-4281-b951-d872f2087c98
* Extends IBusText to handle mozc's extended field.nona@chromium.org2012-11-063-37/+184
| | | | | | | | | | | | This is part of mozc dependency removal and libibus removal. BUG=129403 TEST=ran chromeos_unittests Review URL: https://chromiumcodereview.appspot.com/11363033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166175 0039d316-1c4b-4281-b951-d872f2087c98
* Implement IBusPanelService.nona@chromium.org2012-11-063-1/+664
| | | | | | | | | | | | | | This class provide IBus UI related functionality. This class is compiled and tested but not used in production binary. This patch set depends http://codereview.chromium.org/11343038/. BUG=158264 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11342040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166119 0039d316-1c4b-4281-b951-d872f2087c98
* net: Implement canceling of all async operations in FileStream.paivanof@gmail.com2012-11-061-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Canceling of async operations allows to not wait for their completion in FileStream's destructor. Other related changes include: - Got rid of FileStream::Close() and FileStream::CloseSync() methods because reuse of FileStream object doesn't make much sense, it should be destroyed instead. - Changed FileStream to always acquire ownership of the PlatformFile it was given. Fixed usages of FileStream where no ownership was assumed, introduced new helper functions in base/platform_file.h on the way. - FileStream's destructor now always closes the file. If file was opened with PLATFORM_FILE_ASYNC then actual closing is done asynchronously, destructor doesn't wait for that and returns immediately. When file was opened without PLATFORM_FILE_ASYNC closing is done synchronously and the thread doing that should be allowed to do IO operations. - Implementation of FileStream is refactored. FileStream is now just a wrapper around internal object that does all actual work and that can be easily orphaned in the destructor to not block on the actual file descriptor closing. All platform-independent code is extracted into a special file and amount of platform-dependent code is minimized. BUG=115067, 112474 TEST=net_unittests Review URL: https://chromiumcodereview.appspot.com/10701050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166091 0039d316-1c4b-4281-b951-d872f2087c98
* Collect user logs that debugd can not accessgauravsh@chromium.org2012-11-053-9/+36
| | | | | | | | | | | | | | | Debugd can't access anything inside a user's cryptohome. So, get a list of user logs files to collect from debugd, and then read them. BUG=chromium-os:34817 TEST=Navigate to chrome://system and verify chrome_user_log, login-times and logout-times now show up. Review URL: https://chromiumcodereview.appspot.com/11035014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166065 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 165919 - Extends DBusThreadManger to handle IBusPanelServicejochen@chromium.org2012-11-055-29/+0
| | | | | | | | | | | | BUG=158264 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11366012 TBR=nona@chromium.org Review URL: https://codereview.chromium.org/11363077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165925 0039d316-1c4b-4281-b951-d872f2087c98
* Extends DBusThreadManger to handle IBusPanelServicenona@chromium.org2012-11-055-0/+29
| | | | | | | | | BUG=158264 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11366012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165919 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce IBusPanelService with empty implementation.nona@chromium.org2012-11-059-13/+299
| | | | | | | | | | | | This patch set introduce only empty implementation for IBusPanelService. The actual implementation will be done with http://codereview.chromium.org/11342040/. BUG=158264 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11343038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165914 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce IBusConfigClient with empty implementation.nona@chromium.org2012-11-055-0/+270
| | | | | | | | | | | The actual implementation will be done with http://codereview.chromium.org/11273114/. BUG=158265 TEST=ran chromeos_unittests, unit_tests Review URL: https://chromiumcodereview.appspot.com/11271040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165912 0039d316-1c4b-4281-b951-d872f2087c98
* Clean Up: Remove mozc.candidate attachment field handling.nona@chromium.org2012-11-053-31/+17
| | | | | | | | | | | | | | With new Mozc candidates structure, mozc.candidate attachment field is no longer necessary. show_window_at_composition should be handled instead. BUG=129403 TEST=ran chromeos_unittests. Review URL: https://chromiumcodereview.appspot.com/11358033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165911 0039d316-1c4b-4281-b951-d872f2087c98
* Add TestInterface methods for adding shill stub devices and servicesstevenjb@chromium.org2012-11-0211-72/+443
| | | | | | | | | | | | This will help write functional tests for network handlers written on top of the Shill client code. BUG=154072 TEST=NetworkSmsHandlerTest.SmsHandlerDbusStub passes Review URL: https://chromiumcodereview.appspot.com/11365022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165633 0039d316-1c4b-4281-b951-d872f2087c98
* output_configurator: Re-add DPMS call.marcheu@chromium.org2012-11-021-1/+6
| | | | | | | | | | | | | | | | Removing those regresses idle suspend. Until we decide how to fix it properly, let's add it back. Let's also add a message to explain the use for that code so others don't fall into the same trap. BUG=none TEST=by hand, idle suspend/resume now works Change-Id: I29c0a7f065ffbef2f8bbef148bd2fb1f0a3ebea8 Review URL: https://chromiumcodereview.appspot.com/11293056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165621 0039d316-1c4b-4281-b951-d872f2087c98
* output_configurator: Remove now useless DPMS calls.marcheu@chromium.org2012-11-011-10/+0
| | | | | | | | | BUG=chromium-os:31795 TEST=compiles Review URL: https://chromiumcodereview.appspot.com/10908080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165508 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Break the dependency to chrome_switches.h from statistics_provider.cctfarina@chromium.org2012-10-242-0/+4
| | | | | | | | | | BUG=154372 R=stevenjb@chromium.org TBR=ben@chromium.org Review URL: https://codereview.chromium.org/11244004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163870 0039d316-1c4b-4281-b951-d872f2087c98
* Use the current state when resuming.oshima@chromium.org2012-10-231-5/+20
| | | | | | | | | | | | | | | - When resuming (power_on=1, all_display=1), use the current state to restore display. - Don't turn off the internal display even for mirror mode. chrome never remove the internal display and this was confusing chrome. (I'll do right fix on 25) BUG=chrome-os-partner:14980, 157284 TEST=manual Review URL: https://chromiumcodereview.appspot.com/11233052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163716 0039d316-1c4b-4281-b951-d872f2087c98