summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge 175817achuith@chromium.org2013-01-221-0/+4
| | | | | | | | | | | | | | > Enable natural scroll by default on OOBE. > > BUG=159192 > TEST=manual > > Review URL: https://chromiumcodereview.appspot.com/11827006 TBR=achuith@chromium.org Review URL: https://codereview.chromium.org/11896048 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178136 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177892sergeyu@chromium.org2013-01-221-1/+27
| | | | | | | | | | | | | | | | | | | | | > Add hack that works around signaling bug that breaks Chromoting. > > Signaling endpoint used by chromoting doesn't always handle correctly the > case when host and client use the same stanza ID's. Workaround this issue > by adding 'x' prefix to all messages that go from client to host. > > This is the same change as in crrev.com/160330 . That CL was reverted > because it was believed that the original bug was fixed. > > BUG=168617 > > > Review URL: https://chromiumcodereview.appspot.com/11926031 TBR=sergeyu@chromium.org Review URL: https://codereview.chromium.org/12045034 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178134 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177740cramya@chromium.org2013-01-225-0/+29
| | | | | | | | | | | | | | | > Adding gl_vendor and gl_renderer to the crash report and UMA system profile protocol buffers. > > Adding these fields to differentiate between devices with the same 'model' string but different GPUs. Also remove gpu vendor_id and device_id for Android since this concept does not exist for Android. > > BUG=165263 > > Review URL: https://chromiumcodereview.appspot.com/11958047 TBR=cramya@chromium.org Review URL: https://codereview.chromium.org/12047031 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178122 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176013xhwang@google.com2013-01-222-7/+23
| | | | | | | | | | | | | | | > Fix CHECK failure processing unencrypted frames within a potentially encrypted ISO CENC stream. > > BUG=168852 > TEST=URL in bug; unit tests in a forthcoming CL > > > Review URL: https://chromiumcodereview.appspot.com/11818037 TBR=ddorwin@chromium.org Review URL: https://codereview.chromium.org/12041026 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178109 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 173945noelallen@google.com2013-01-223-68/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Fix Mouselock > > There appears to be a race in mouselock in which we can get calls to > DidChangeView due to a Fullscreen switch request, however we are not > yet in fullscreen. Combined with a request to switch to mouselock > this can get into a state were we fail to correctly track the mouselock > state. > > The fact that fullscreen has a IsFullscreen, yet mouselock does not > also complicates matters. > > This CL removes as much of the logic as possible, and simply recreates > the draw context every time DidChangeView is called. In addition it > seperates the request to change view with the request to get mouse > lock. The combination cleans up the logic and removes the need for > the assert which was causing the crash. > > R=binji@chromium.org > BUG=114091 > NOTRY=true > > Review URL: https://chromiumcodereview.appspot.com/11620003 TBR=noelallen@chromium.org Review URL: https://codereview.chromium.org/12036038 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178101 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 175190brettw@chromium.org2013-01-2239-65/+161
| | | | | | | | | | | | | | | | | > Use an explicit PID for duplicating Pepper handles rather than the Channel's. > > When the browser process launches the plugin, it explicitly tells each side the PID of the other side, and we now use this PID for sharing handles. Previously we'd use the PID from the IPC channel. > > Using the PID from the IPC channel creates a race condition because the PID isn't set until the "hello" message from the opposite side is processed, which isn't guaranteed at any particular time. > > BUG=168222 > > Review URL: https://codereview.chromium.org/11722017 TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/12051023 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178098 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177774yusufo@google.com2013-01-222-57/+61
| | | | | | | | | | | | | | | | | | | | > Start sending synthetic keyevents for enter and tab in Android IME > > After sdk 15 Android framework no longer sends keyevents for enter and tab > and the current spec says the dispatchKeyEvent call should only be used for > hardware keyboard. So we stop calling ImeAdapter with dispathKeyEvent if the > keyboard is not connected and also start sending these keyevents when a > they are committed as a single character > > BUG=166233 > > > Review URL: https://chromiumcodereview.appspot.com/11914003 TBR=yusufo@chromium.org Review URL: https://codereview.chromium.org/12045030 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178090 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177305thestig@chromium.org2013-01-224-26/+16
| | | | | | | | | | | | | > Media Galleries: Avoid depending on SystemMonitor::DeviceChangedObserver call ordering for device Transient IDs. > > BUG=170180 > TEST=See bug. > Review URL: https://codereview.chromium.org/11971008 TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/12036034 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178058 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177846stevenjb@chromium.org2013-01-226-135/+116
| | | | | | | | | | | | | | | | | | | > Use Device.Scanning for wifi_scanning > > This also refactors NetworkListDetailedViewBase::RefreshNetworkList, > shich should help make the code more maintainable, and fixes a subtle bug > where the "scanning" text was not getting removed. It also reduces the > jumpiness of the network list when it updates. > > BUG=153004 > > > Review URL: https://chromiumcodereview.appspot.com/12018022 TBR=stevenjb@chromium.org Review URL: https://codereview.chromium.org/12033026 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178057 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177710 > ash: Make the touch HUD fullscreen.sadrul@chromium.org2013-01-226-37/+86
| | | | | | | | | | | | | | | > > Show the touch HUD fullscreen by default. Allow it to be changed to > 10% scale, or invisible, using alt-ctrl-i accelerators. > > BUG=170758 > > Review URL: https://codereview.chromium.org/11867018 TBR=sadrul@chromium.org Review URL: https://codereview.chromium.org/12051016 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178051 0039d316-1c4b-4281-b951-d872f2087c98
* Aura: Skip frames with unregistered surface_handlesievers@chromium.org2013-01-222-2/+24
| | | | | | | | | | | | Also track the number of consecutive bad frames received. Add a CHECK() to figure out whether tabs ever get into a consistently bad state, or whether these are only single stray bad frames (for example in races during context lost). BUG=170094 Review URL: https://codereview.chromium.org/12022031 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178049 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177841sievers@chromium.org2013-01-221-0/+10
| | | | | | | | | | | | | | | | | > TextureImageTransport: Skip swaps without backbuffer. > > Because of the descheduling logic, this should really only be possible > for consecutive Swaps without any drawing in between. > > BUG=170094 > > > Review URL: https://chromiumcodereview.appspot.com/12022007 TBR=sievers@chromium.org Review URL: https://codereview.chromium.org/12040022 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@178045 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 25.0.1364.44chrome-release@google.com2013-01-221-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177970 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177696nkostylev@chromium.org2013-01-211-0/+5
| | | | | | | | | | | | | | | | > [cros, login] Ignore focus traverse action if UI is blocked > > BUG=169956 > NOTRY=true > TBR=ygorshenin1 > > > Review URL: https://chromiumcodereview.appspot.com/12022017 TBR=nkostylev@chromium.org Review URL: https://codereview.chromium.org/12045004 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177905 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177434nkostylev@chromium.org2013-01-213-2/+36
| | | | | | | | | | | | | | | > [cros, oobe a11y] Make sure that ChromeVox highlight moves out of a11y popup when it is closed. > > BUG=165223 > NOTRY=true > > > Review URL: https://chromiumcodereview.appspot.com/11959038 TBR=nkostylev@chromium.org Review URL: https://codereview.chromium.org/12043008 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177904 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 25.0.1364.43chrome-release@google.com2013-01-211-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177883 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 25.0.1364.42chrome-release@google.com2013-01-201-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177872 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 175108 (for crbug.com/171096)thakis@chromium.org2013-01-201-5/+17
| | | | | | | | | | | | | | | | | | | > mac: Attempt to fix a startup perf regression caused by r174778 > > NOTRY=true > BUG=167798,168084 > TEST=Install https://chrome.google.com/webstore/detail/slinky-elegant/bmanlajnpdncmhfkiccmbgeocgbncfln?hl=en > Look at new tab button in active and inactive windows. Also check the new tab > button with the default theme. Look at startup perf graphs, should improve by > ~1.8ms. > > > Review URL: https://chromiumcodereview.appspot.com/11748026 TBR=thakis@chromium.org Review URL: https://codereview.chromium.org/12032003 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177865 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177393kinaba@chromium.org2013-01-193-0/+27
| | | | | | | | | | | | | | > drive: Should not re-add parameters to the "next" feed url. > > BUG=168736 > TEST=manually tested with large and small initial/delta/search feeds. > > Review URL: https://chromiumcodereview.appspot.com/11987003 TBR=kinaba@chromium.org Review URL: https://codereview.chromium.org/12016033 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177844 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 25.0.1364.41chrome-release@google.com2013-01-191-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177807 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176755rsimha@chromium.org2013-01-192-8/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > [sync] [chromeos] Fix setup flow when sync data is cleared via dashboard and sync is set up again > > On Chrome OS, when a user clears their sync data via the dashboard, logs > out, logs in again, and attempts to set up sync once more, the setup > flow ends up getting stuck after the backend is initialized, because > SigninTracker does not respond to the OnStateChanged call from > ProfileSyncService::OnBackendInitialized. > > This regression can be traced back to r171190, where SigninTracker was > no longer initialized with the SigninTracker::SERVICES_INITIALIZING > state in SyncSetupHandler::DisplayConfigureSync. This was causing > SigninTracker to drop the OnStateChanged call from ProfileSyncService > in the scenario where the user attempted to set up sync while already > signed in to the Chrome OS device after clearing sync data via the > dashboard. > > This patch restores the initial SigninTracker state in > SyncSetupHandler::DisplayConfigureSync. It also fixes the > unittests that were previously failing in the original CL. > > BUG=167090, 168064, 168875, 81265 > TEST=On ChromeOS, clear the dashboard, log out, log in, and set up sync. > > Review URL: https://codereview.chromium.org/11824021 TBR=rsimha@chromium.org Review URL: https://codereview.chromium.org/11941029 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177806 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177692oshima@chromium.org2013-01-191-72/+88
| | | | | | | | | | | | | | | | | | > Fallback to 1x scale factor if the images doesn't have the target > scale factor. > > Remove MatchScale and its flag as it's no longer necessary. > > BUG=170415 > TEST=see the bug > > > Review URL: https://chromiumcodereview.appspot.com/11946032 TBR=oshima@chromium.org Review URL: https://codereview.chromium.org/11938038 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177804 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177644rkc@chromium.org2013-01-181-0/+7
| | | | | | | | | | | | | | | | | | > Handle the 'cancel' case on attach a file. > If the user selects a file, then selects a file again and hits cancel, we should handle it correctly and clear the attached file. Currently this tries to read the empty file and causes a JS exception. > > > R=csilv@chromium.org > BUG=167821 > TEST=Open feedback page, attach a file, attach a file again but cancel. Verify the report can still be sent and the originally attached file is not sent with it. > > > Review URL: https://chromiumcodereview.appspot.com/11969051 TBR=rkc@chromium.org Review URL: https://codereview.chromium.org/11859043 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177797 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176410szym@chromium.org2013-01-181-1/+6
| | | | | | | | | | | | | | > [net] Set default HostCache size to 1000 entries. > > BUG=114277 > > > Review URL: https://chromiumcodereview.appspot.com/11775008 TBR=szym@chromium.org Review URL: https://codereview.chromium.org/11941025 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177796 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 157916szym@chromium.org2013-01-182-11/+0
| | | | | | | | | | | | | | | | > [net] Connect DNS signals to re-fetching PAC script. > > BUG=128620 > > > Review URL: https://chromiumcodereview.appspot.com/10534102 Reverting in branch while we work out a long-term solution on trunk. TBR=szym@chromium.org Review URL: https://codereview.chromium.org/12017029 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177786 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177347tbarzic@chromium.org2013-01-181-1/+9
| | | | | | | | | | | | | | | | | | | | > Add some null checks to ShowInfobar in nacl_infobar.cc > > By the time request for showing the infobar reaches UI thread, the tab/window may already > be gone, so Chrome could crash without this > (for example: app with NaCl module that has empty Native Client manifest > (or manifest that doesn't have nexe for current platform) that imediately closes > the current tab) > > BUG=167910 > TEST=Verified the described app doesn't cause browser crash > > Review URL: https://chromiumcodereview.appspot.com/11975002 TBR=tbarzic@chromium.org Review URL: https://codereview.chromium.org/11867026 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177743 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177662mnissler@chromium.org2013-01-182-4/+38
| | | | | | | | | | | | | | | | | | | | > Gracefully handle the situation of duplicate public accounts. > > Make the code in DeviceLocalAccountPolicyService robust against this > case, i.e. don't crash and just ignore the duplicates. This situation > should not show up in theory, but since the data is coming from the > server being robust is better. > > BUG=chromium:170538 > TEST=unit test > > > Review URL: https://chromiumcodereview.appspot.com/12026003 TBR=mnissler@chromium.org Review URL: https://codereview.chromium.org/12022030 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177734 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177134hans@chromium.org2013-01-181-0/+5
| | | | | | | | | | | | | | | | > Web Speech API: Don't expose the API on Android > > The API is not implemented on Android yet. > > BUG=170079 > TBR=jamesr > > Review URL: https://chromiumcodereview.appspot.com/11970005 TBR=hans@chromium.org Review URL: https://codereview.chromium.org/12022025 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177721 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177474hshi@google.com2013-01-181-5/+7
| | | | | | | | | | | | | | | | | | | > Start loading machine statistics earlier. > > Move the StatisticsProvider::StartLoadingMachineStatistics() call > earlier, from PostBrowserStart() to PostProfileInit(). The move > is necessary for during OOBE the login manager may instantiate > StartupCustomizationDocument singleton which needs machine stats. > > BUG=170635 > TEST=manually verified on device that DCHECK does not fail during OOBE > > Review URL: https://codereview.chromium.org/11958046 TBR=hshi@google.com Review URL: https://codereview.chromium.org/12016018 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177720 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176899nkostylev@chromium.org2013-01-1812-26/+20
| | | | | | | | | | | | | | | | > Enabled word wrap for enterprise notification in systray. > > Also made made small changes in HoverHighlightView. > > > TBR=nkostylev > BUG=chromium-os:35755 > > Review URL: https://chromiumcodereview.appspot.com/11858008 TBR=dzhioev@chromium.org git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177716 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177519 - Fix the comment of PPB_MessageLoop.PostWork()yzshen@chromium.org2013-01-183-13/+13
| | | | | | | | | | | | | | The current comment says that PostWork() returns PP_OK_COMPLETIONPENDING if successful. This CL changes it to PP_OK. TEST=None BUG=170777 Review URL: https://codereview.chromium.org/11962050 TBR=yzshen@chromium.org Review URL: https://codereview.chromium.org/12026021 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177700 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 175820digit@chromium.org2013-01-1810-5/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > android: Pass CPU properties from browser to renderer process. > > This is necessary to allow the renderer processes to use NEON > instructions on ARM devices that support them in libraries like > Skia. > > The main issue is that on JellyBean and higher, the renderer > process runs in a sandbox that prevents it from accessing the > filesystem, including /proc/ which is the only way to query the > kernel for the features detected by the CPU. > > To overcome this, send the result of the probe to each renderer > process, which will use the new android_setCpu() function > introduced in https://gerrit.chromium.org/gerrit/#/c/39370/ > > Note that this requires that third-party libraries use the > android_getCpuCount() and android_getCpuFeatures() function > to get this data at runtime. > > BUG=164154 > NOTRY=true > > Review URL: https://chromiumcodereview.appspot.com/11503013 TBR=digit@chromium.org Review URL: https://codereview.chromium.org/12026020 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177679 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 175818nkostylev@chromium.org2013-01-185-23/+33
| | | | | | | | | | | | | | | > Fixed header bar UI behaviour. > > BUG=167651 > TEST=Manual tests on Linux ChromeOS build and Lumpy. > > > Review URL: https://chromiumcodereview.appspot.com/11672007 TBR=ygorshenin@chromium.org Review URL: https://codereview.chromium.org/11886095 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177637 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177150mnissler@chromium.org2013-01-181-1/+1
| | | | | | | | | | | | | | | | | | > Fix version numbers for ForceSafeSearch policy documentation. > > The policy was added in 25.0.1321.0, but the documentation says it's > available in 24. Fix that. > > BUG=chromium:170316 > TEST=None > > > Review URL: https://chromiumcodereview.appspot.com/11956010 TBR=mnissler@chromium.org Review URL: https://codereview.chromium.org/11871011 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177633 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177373vitalybuka@chromium.org2013-01-181-11/+11
| | | | | | | | | | | | | > Partial Revert of "Decouple --kiosk from --kiosk-printing, and clean up some code while we are at it." (https://src.chromium.org/viewvc/chrome?view=rev&revision=169758) to fix crash. > > BUG=170466 > > Review URL: https://chromiumcodereview.appspot.com/11967036 TBR=vitalybuka@chromium.org Review URL: https://codereview.chromium.org/12022012 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177623 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177422joaodasilva@chromium.org2013-01-181-10/+26
| | | | | | | | | | | | | | | | > Don't show the auto-enrollment-cancellation confirmation dialog unless the user is at the screen explaining what enrollment is about. > > Without this fix, the dialog can be shown at any step (enrollment in progress, done, showing an error, etc). > > BUG=170230 > > > Review URL: https://chromiumcodereview.appspot.com/11970014 TBR=joaodasilva@chromium.org Review URL: https://codereview.chromium.org/12022011 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177621 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 25.0.1364.40chrome-release@google.com2013-01-181-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177576 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177367cevans@chromium.org2013-01-184-18/+23
| | | | | | | | | | | | | | | | | | | | | | | | > Disambiguate texture target/face in TextureManager > > * Rename "face" parameter to "target" in: > * gpu::gles2::TextureManager::GetLevelSize > * gpu::gles2::TextureManager::GetLevelType > * gpu::gles2::TextureManager::ValidForTexture > * Correct use of said parameter in > content::GpuVideoDecodeAccelerator::OnAssignPictureBuffers > > Change-Id: I0fb0be98a368106f35a6a59d7a0b9c98f4a24421 > > BUG=chromium:170170 > TEST=trybots > > > Review URL: https://chromiumcodereview.appspot.com/11866013 TBR=sheu@chromium.org Review URL: https://codereview.chromium.org/11867013 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177572 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 25.0.1364.39chrome-release@google.com2013-01-181-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177562 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177510stevenjb@chromium.org2013-01-189-60/+135
| | | | | | | | | | | | | | | | | > Fixes for Cellular indicators > * Clear Initialized when Cellular disabled (e.g. on suspend) > * Update Enable Cellular Button when it becomes available > * Add No Cellular Networks message when Cellular is enabled but there are no networks > > BUG=168935,169979 > TBR=sky@chromium.org for ash_strings.grd > > Review URL: https://codereview.chromium.org/11967007 TBR=stevenjb@chromium.org Review URL: https://codereview.chromium.org/12017004 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177546 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177342stevenjb@chromium.org2013-01-186-12/+23
| | | | | | | | | | | | | | | | | > Use Manager.UninitializedTechnologies to track initializing state for Cellular > > It turns out that we were unable to correctly use EnabledTechnologies + Device.Powered to determine the Cellular Initializing state. > Instead, we are adding an "InitializedTechnologies" property. For now, this is a shared string, but we'll move it to service_constants.h before we commit to ToT. > > BUG=169979 > > > Review URL: https://chromiumcodereview.appspot.com/11971009 TBR=stevenjb@chromium.org Review URL: https://codereview.chromium.org/11871005 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177543 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176966stevenjb@chromium.org2013-01-1822-166/+273
| | | | | | | | | | | | | | | | | | | | > Add cellular_initialized state and UI > > The goal is to provide connecting icon and text while the cellular network is initializing. > > Cellular initializing is defined as: > Cellular technology is enabled, but no powered device present. > > BUG=169979 > For ash_strings.gyp: > TBR=sky@chromium.org > > Review URL: https://codereview.chromium.org/11878034 TBR=stevenjb@chromium.org Review URL: https://codereview.chromium.org/11926007 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177538 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177502rkc@chromium.org2013-01-1723-19/+48
| | | | | | | | | | | | | | | | > Add 'dark' lte icons. > Add 'dark' versions for the LTE/HSPA/GPRS icons so that we show them correctly on the network list. > > R=stevenjb@chromium.org > BUG=169969 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=177323 > > Review URL: https://codereview.chromium.org/11975029 TBR=rkc@chromium.org git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177523 0039d316-1c4b-4281-b951-d872f2087c98
* Partially merge r177090 for crbug.com/169131.ronghuawu@google.com2013-01-171-2/+6
| | | | | | | BUG=169131 Review URL: https://codereview.chromium.org/11946026 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177511 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176691pkotwicz@chromium.org2013-01-178-4/+108
| | | | | | | | | | | | | | | > Avoid sending notifications when the bitmap data in the history backend is replaced with bitmap data which is byte for byte equal. > > Bug=168223 > Test=HistoryBackendTest.* > Manual: see comment #7 in bug > > Review URL: https://chromiumcodereview.appspot.com/11830007 TBR=pkotwicz@chromium.org Review URL: https://codereview.chromium.org/11956044 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177500 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176816cevans@chromium.org2013-01-177-8/+26
| | | | | | | | | | | | | | | | | | | | | | | | > Enforce non-negative BitstreamBuffer id > > There is some video decode accelerator code that assumes that a negative > BitstreamBuffer id is never given, and uses it to mark error conditions. > > * Check for non-negative id when receving over IPC. > * Make sure we don't send negative ids from our video decode pipeline (by > handling wrapping) > * Update PPAPI interface to document the fact that negative ids should not > be used. > > BUG=chromium:168293 > TEST=local build, run on snow > > > Review URL: https://chromiumcodereview.appspot.com/11826064 TBR=sheu@chromium.org Review URL: https://codereview.chromium.org/11961051 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177494 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 175101cevans@chromium.org2013-01-171-0/+7
| | | | | | | | | | | | | | | | | | > Validate texture sizes given to VDA > > Make sure that the texture sizes as passed from the untrusted renderer to the > to the VDA on the GPU process match with the texture's size as the GPU > process has tracked it. > > BUG=chromium:168293 > TEST=local build, run on x86, snow > > Review URL: https://chromiumcodereview.appspot.com/11722023 TBR=sheu@chromium.org Review URL: https://codereview.chromium.org/11968051 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177492 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 177037cevans@chromium.org2013-01-171-14/+38
| | | | | | | | | | | | | | | | | | | > Linux sandbox: limit the address space > > - We limit the address space to 16GB. > (We relax a previous restriction of 4GB of address space mapping). > > - We limit the brk() heap to 2GB. > > BUG=v8:2473, 169327, 157177 > NOTRY=true > > Review URL: https://chromiumcodereview.appspot.com/11783104 TBR=jln@chromium.org Review URL: https://codereview.chromium.org/11975059 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177490 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176961cevans@chromium.org2013-01-171-21/+35
| | | | | | | | | | | | | | | | | > TCMalloc: restrict maximum size of memory allocations > > For security purposes, we restrict the maximum size of memory allocations under > what can be indexed by an int. > > BUG=169327 > NOTRY=true > > Review URL: https://chromiumcodereview.appspot.com/11857007 TBR=jln@chromium.org Review URL: https://codereview.chromium.org/11958048 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177488 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 176009cevans@chromium.org2013-01-175-9/+18
| | | | | | | | | | | | | | | > Reject invalid GURLs across IPC. > > Also add some per-file owners to the common_param_traits.cc, since it's a > highly security-sensitive area. > > BUG=168923 > Review URL: https://codereview.chromium.org/11826002 TBR=cevans@chromium.org Review URL: https://codereview.chromium.org/11999003 git-svn-id: svn://svn.chromium.org/chrome/branches/1364/src@177487 0039d316-1c4b-4281-b951-d872f2087c98