summaryrefslogtreecommitdiffstats
path: root/chromeos
Commit message (Collapse)AuthorAgeFilesLines
* Added policy to disable/enable a system log upload.pbond2015-08-182-0/+5
| | | | | | | | BUG=471888 Review URL: https://codereview.chromium.org/1280003004 Cr-Commit-Position: refs/heads/master@{#343861}
* Elim unused Chrome OS networking UI codestevenjb2015-08-182-14/+3
| | | | | | | | BUG=none Review URL: https://codereview.chromium.org/1285373004 Cr-Commit-Position: refs/heads/master@{#343852}
* Automated Commit: Committing new LKGM version 7366.0.0 for chromeos.chromeos-commit-bot2015-08-161-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#343599}
* Automated Commit: Committing new LKGM version 7363.0.0 for chromeos.chromeos-commit-bot2015-08-151-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#343581}
* Revert "SessionManagerClient::RestartJob: Use argv instead of string."ihf2015-08-145-22/+24
| | | | | | | | | | | | | | | This speculatively reverts commit fb4a4c60596d52a2f3ab26ab94399d3ebd5a64c1. For details please see crbug.com/520311 NOTRY=true TBR=mnissler BUG=chromium:520311, chromium:433172 TEST=compiles Review URL: https://codereview.chromium.org/1289393002 Cr-Commit-Position: refs/heads/master@{#343536}
* Automated Commit: Committing new LKGM version 7357.0.0 for chromeos.chromeos-commit-bot2015-08-131-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#343162}
* Make Type an unmanaged ONC propertystevenjb2015-08-135-27/+28
| | | | | | | | | | | This will simplify some of the new Settings UI, allowing us to read onc.Type directly without parsing a managed dictionary. BUG=none Review URL: https://codereview.chromium.org/1284963002 Cr-Commit-Position: refs/heads/master@{#343146}
* Remove remaining legacy SplitString calls.brettw2015-08-123-19/+19
| | | | | | | | TBR=zelidrag@chromium.org (chromeos) Review URL: https://codereview.chromium.org/1284833004 Cr-Commit-Position: refs/heads/master@{#342983}
* Implementation of Audio for the Chrome Os Device Emulatormozartalouis2015-08-112-16/+44
| | | | | | | | BUG=516545 Review URL: https://codereview.chromium.org/1274403003 Cr-Commit-Position: refs/heads/master@{#342849}
* User MessageLoopForIO::WatchFileDescriptor in proces_output_watchertbarzic2015-08-108-209/+162
| | | | | | | | | | | | | | | The main point is to avoid usage of select for observing process' pseudo-terminal fd. Main problems with select is that it doesn't work for fd > 1024, which started to be passed to ProcessOutputWatcher. Added benefit of MessageLoopForIO::WatchFileDescriptor is that it's async, so it enables us to do some clean up for process proxy thread management. BUG=495165 TEST=Open a lot of crosh tabs (e.g. ~30). Crosh is started in all of them. Review URL: https://codereview.chromium.org/1258193002 Cr-Commit-Position: refs/heads/master@{#342716}
* Replace ToLower calls to the new formatbrettw2015-08-102-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaces base::StringToLowerASCII(string) with base::ToLowerASCII(string) This form is 1:1 search and replace. A bunch of places did something like this: std::string foo(something_else); base::StringToLowerASCII(&foo); which became: foo = base::ToLowerASCII(something_else); A couple places really wanted in-place changing and they became: foo = base::ToLowerASCII(foo); There was pretty trivial cleanup in chrome_main_delegate.cc chrome/test/chromedriver/server/http_handler.cc (fix indenting). There was more cleanup in: chrome/installer/util/language_selector.cc and components/plugins/renderer/mobile_youtube_plugin.cc In components/history/core/browser/url_utils.cc I removed the call since it was calling ToLower on the host name out of a GURL, which is already guaranteed to be lower-case. NOPRESUBMIT=true (due to touching code with wstrings) Review URL: https://codereview.chromium.org/1279123004 Cr-Commit-Position: refs/heads/master@{#342659}
* Redesign bluetooth settings interfacerfrappier2015-08-102-52/+381
| | | | | | | | | R=oshima@chromium.org BUG=516366 Review URL: https://codereview.chromium.org/1275773005 Cr-Commit-Position: refs/heads/master@{#342649}
* Remove useless use of StringPrintf("%s", ...)ricea2015-08-101-2/+1
| | | | | | | | | | | | | It is not necessary to use StringPrintf() to convert a C string to a std::string, as std::string has a constructor which will perform the conversion implicitly. BUG= TEST=compiled Review URL: https://codereview.chromium.org/1280333002 Cr-Commit-Position: refs/heads/master@{#342624}
* Refresh the rest of devices even if some devices get errors.hirono2015-08-101-2/+2
| | | | | | | | | | | | | | | | | When resuming the device, DiskMountManager tries to remount all removable device. However if the removable device was detached during suspend, it encounters error when calling GetDeviceProperties and it stopps to remount the all other devices. The CL changes the behavior so that DiskMountManager continue to remounting even if it fails to fetch properties of one device. BUG=514012 TEST=None Review URL: https://codereview.chromium.org/1281513002 Cr-Commit-Position: refs/heads/master@{#342574}
* Automated Commit: Committing new LKGM version 7343.0.0 for chromeos.chromeos-commit-bot2015-08-091-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#342556}
* [cleanup] Removed unused OnlineAttempt and OnlineAttemptHost classes.dzhioev2015-08-079-399/+0
| | | | | | | | | | Follow up to https://codereview.chromium.org/1277693002/. BUG=470893 Review URL: https://codereview.chromium.org/1278483003 Cr-Commit-Position: refs/heads/master@{#342301}
* [cleanup] Removed online password check on Chrome OS login.dzhioev2015-08-062-37/+4
| | | | | | | | | | OnlineAttempt and OnlineAttemptHost will be removed in a subsequent CL. BUG=470893 Review URL: https://codereview.chromium.org/1277693002 Cr-Commit-Position: refs/heads/master@{#342218}
* Automated Commit: Committing new LKGM version 7334.0.0 for chromeos.chromeos-commit-bot2015-08-061-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#342073}
* Fix all failed and canceled URLRequestStatuses without errors.davidben2015-08-051-2/+3
| | | | | | | | | | | | | | As a step towards removing URLRequestStatus::Status, stop creating FAILED and CANCELED URLRequestStatuses without supplying an error. IO_PENDING is left for later as that'll want a bit more careful auditing of error() callers. BUG=490311 Review URL: https://codereview.chromium.org/1239993004 Cr-Commit-Position: refs/heads/master@{#341913}
* SessionManagerClient::RestartJob: Use argv instead of string.mnissler2015-08-055-24/+22
| | | | | | | | | | | | | | | | This changes the interface to session_manager to pass the command line as an array instead of a string. The previous code path would (incorrectly) quote arguments and combine them into a string, and then again parse and unquote them on the session_manager side, which is unnecessary and error-prone. This changes the code to pass an array of strings in the DBus call, which simplifies things considerably. BUG=chromium:433172 TEST=Guest session starts successfully. Review URL: https://codereview.chromium.org/1268973004 Cr-Commit-Position: refs/heads/master@{#341873}
* Automated Commit: Committing new LKGM version 7331.0.0 for chromeos.chromeos-commit-bot2015-08-051-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#341860}
* Add functionality to Bluetooth settings UI.rfrappier2015-08-032-121/+274
| | | | | | | | | | | | | * Sync loaded bluetooth devices on startup * Sync new bluetooth devices after added by the system or another emulator client. * Allow new bluetooth devices to require a pin or passkey when pairing. BUG=514290 R=oshima@chromium.org Review URL: https://codereview.chromium.org/1258783009 Cr-Commit-Position: refs/heads/master@{#341537}
* Automated Commit: Committing new LKGM version 7325.0.0 for chromeos.chromeos-commit-bot2015-08-031-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#341488}
* Automated Commit: Committing new LKGM version 7322.0.0 for chromeos.chromeos-commit-bot2015-08-021-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#341476}
* Automated Commit: Committing new LKGM version 7318.0.0 for chromeos.chromeos-commit-bot2015-08-011-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#341465}
* Implement networkingPrivate.unlockCellularSim and setCelluarSimStatestevenjb2015-07-317-92/+255
| | | | | | | | | | | | This adds Cellular SIM functionality to the networkingPrivate API. It also adds some functionality to the fake implementation to better support testing. BUG=277890 Review URL: https://codereview.chromium.org/1265513004 Cr-Commit-Position: refs/heads/master@{#341415}
* Remove the no-longer-used chromeos::switches::kHasChromeOSKeyboardafakhry2015-07-312-5/+0
| | | | | | | | | | | | The last usage of this switch was removed in this CL: https://codereview.chromium.org/1188693002/. We don't need to keep it around. BUG=501121 Review URL: https://codereview.chromium.org/1269793005 Cr-Commit-Position: refs/heads/master@{#341364}
* Replace 'Scanning' text in Network Status Area with throbberstevenjb2015-07-311-1/+2
| | | | | | | | | | | | | | | | This CL: * Removes the 'Scanning' text from the network list * When scanning starts: Starts the throbber (which fades in), and fades the info button out. Clicking on the Throbber is the same as clicking on the info button. * When scanning stops: Stops the throbber (which fades out) and fades the info button in. BUG=490532 Review URL: https://codereview.chromium.org/1270623002 Cr-Commit-Position: refs/heads/master@{#341242}
* Reduce LOG(ERROR) spam on linux with chromeos=1stevenjb2015-07-301-2/+1
| | | | | | | | | | | | LOG(ERROR) Spam makes failing tests more difficult to debug and obscures actual errors. This cleans up some spam that always shows up when running on Linux with chromeos=1. BUG=none Review URL: https://codereview.chromium.org/1254013002 Cr-Commit-Position: refs/heads/master@{#341145}
* Automated Commit: Committing new LKGM version 7312.0.0 for chromeos.chromeos-commit-bot2015-07-301-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#341064}
* Fix flakiness in ProcessOutputWatcherTeststbarzic2015-07-291-18/+18
| | | | | | | | | | | | The flakiness was caused by process output watcher sending exit output during shutdown (if master end of watched pseudo terminal closure is detected before write to shutdown pipe). BUG=396496 Review URL: https://codereview.chromium.org/1254383005 Cr-Commit-Position: refs/heads/master@{#340983}
* Automated Commit: Committing new LKGM version 7310.0.0 for chromeos.chromeos-commit-bot2015-07-291-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#340855}
* Refresh mount state when suspend is done.hirono2015-07-295-12/+22
| | | | | | | | | BUG=511996 TEST=None Review URL: https://codereview.chromium.org/1255123002 Cr-Commit-Position: refs/heads/master@{#340828}
* Fix the UI issue for showing output muted in ash tray after the device wakes ↵jennyz2015-07-283-15/+84
| | | | | | | | | | | up with hdmi output removed. BUG=512601 TBR=mnissler,derat, rkc Review URL: https://codereview.chromium.org/1262723002 Cr-Commit-Position: refs/heads/master@{#340794}
* [cleanup] Don't let the user disable webview based sign-in.dzhioev2015-07-282-4/+0
| | | | | | | | | | | Tests can still disable webview signing with "webview_signin_disabled" preference. BUG=470893 Review URL: https://codereview.chromium.org/1254283005 Cr-Commit-Position: refs/heads/master@{#340755}
* Automated Commit: Committing new LKGM version 7307.0.0 for chromeos.chromeos-commit-bot2015-07-281-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#340649}
* Make PowerManagerClient aware of dual-role USB type-C devices.michaelpg2015-07-274-0/+18
| | | | | | | | BUG=419509 Review URL: https://codereview.chromium.org/1252873010 Cr-Commit-Position: refs/heads/master@{#340554}
* Automated Commit: Committing new LKGM version 7302.0.0 for chromeos.chromeos-commit-bot2015-07-261-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#340419}
* Automated Commit: Committing new LKGM version 7298.0.0 for chromeos.chromeos-commit-bot2015-07-251-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#340404}
* Add network-apnlist to md-settings/internetstevenjb2015-07-241-0/+20
| | | | | | | | | | | This adds support for selecting an existing Cellular APN or specifying a custom one. BUG=481563 Review URL: https://codereview.chromium.org/1246993004 Cr-Commit-Position: refs/heads/master@{#340312}
* Automated Commit: Committing new LKGM version 7290.0.0 for chromeos.chromeos-commit-bot2015-07-231-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#340048}
* Automated Commit: Committing new LKGM version 7288.0.0 for chromeos.chromeos-commit-bot2015-07-221-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#339842}
* Automated Commit: Committing new LKGM version 7285.0.0 for chromeos.chromeos-commit-bot2015-07-211-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#339619}
* Automated Commit: Committing new LKGM version 7281.0.0 for chromeos.chromeos-commit-bot2015-07-201-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#339415}
* Automated Commit: Committing new LKGM version 7277.0.0 for chromeos.chromeos-commit-bot2015-07-191-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#339406}
* Automated Commit: Committing new LKGM version 7274.0.0 for chromeos.chromeos-commit-bot2015-07-181-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#339391}
* Adds support for Macedonian keyboard.shuchen2015-07-171-0/+1
| | | | | | | | | BUG=352459 TEST=Verified on linux_chromeos. Review URL: https://codereview.chromium.org/1237363002 Cr-Commit-Position: refs/heads/master@{#339334}
* Try to reland "Implement HasInputDevices in CrasAudioManager"cychiang2015-07-172-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed the dependency of media to chromeos:audio. Currently in CrasAudioManager, HasInputDevices always returns True. We need to let HasInputDevices reflect the truth for device without internal microphone like ChromeBox. CrasAudioManager should gets the audio devices from CrasAudioHandler and check if there is any input device of simple usage. Add a property is_for_simple_usage to AudioDeviceType to indicate that a device is for simple usage, not for special usage like loopback, always on keyword mic, or keyboard mic. This property can also replace the logic in audio_detailed_view.cc to filter out the devices that we do not want to display in UI. BUG=490851 TEST=Check audio devices in UI does not contain loopback devices. TEST=Check virtual keyboard does not show microphone for chromebox (Not tested yet). TEST=Go to https://www.google.com/intl/en/chrome/demos/speech.html and see the webpage says there is no microphone on this device. R=dalecurtis@chromium.org, derat@chromium.org, dgreid@chromium.org, jennyz@chromium.org Review URL: https://codereview.chromium.org/1186293003 Cr-Commit-Position: refs/heads/master@{#337791} Review URL: https://codereview.chromium.org/1212013005 Cr-Commit-Position: refs/heads/master@{#339248}
* Automated Commit: Committing new LKGM version 7272.0.0 for chromeos.chromeos-commit-bot2015-07-171-1/+1
| | | | Cr-Commit-Position: refs/heads/master@{#339226}
* Remove legacy StartsWithASCII function.brettw2015-07-169-20/+27
| | | | | | | | | | | This replaces it with base::StartsWith and the appropriate case flag. Since the existing version only ever did case-insensitive tests in ASCII, there should be no behavior change. BUG=506255 TBR=jam Review URL: https://codereview.chromium.org/1242023005 Cr-Commit-Position: refs/heads/master@{#339175}