- 20 Jun, 2014 40 commits
-
-
senorblanco@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=176539:176561&mode=html BUG= TBR=jamesr@chromium.org Review URL: https://codereview.chromium.org/345153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278781 0039d316-1c4b-4281-b951-d872f2087c98
-
sievers@google.com authored
Include this in the blacklist, since it was just released, so assume still broken. R=boliu@chromium.org Review URL: https://codereview.chromium.org/343183004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278780 0039d316-1c4b-4281-b951-d872f2087c98
-
penghuang@chromium.org authored
And fix a bug found with the tests. BindGraphics() does not work for a device which is in the same type with the current bound device. BUG=374383 R=piman@chromium.org, raymes@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=278728 Review URL: https://codereview.chromium.org/324983005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278779 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=305852 Review URL: https://codereview.chromium.org/349543002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278778 0039d316-1c4b-4281-b951-d872f2087c98
-
grt@chromium.org authored
This is an overly-big hammer that will be refined later. BUG=383043 R=asvitkine@chromium.org, gab@chromium.org, mattm@chromium.org, noms@chromium.org Review URL: https://codereview.chromium.org/348433004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278777 0039d316-1c4b-4281-b951-d872f2087c98
-
gab@chromium.org authored
The alternate filename is intended to be the old name of the pref file being read, JsonPrefStore handles the migration if required. JsonPrefStore's FileThreadDeserializer is the best place to do this as it's the only code in the prefs stack running on a thread allowed to do IO (another solution would be to let JsonPrefStore take a PreReadOnFileThreadCallback to abstract the required work away, but the direct approach seemed easier here without breaking encapsulation). BUG=372547 Review URL: https://codereview.chromium.org/347793002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278776 0039d316-1c4b-4281-b951-d872f2087c98
-
dgozman@chromium.org authored
BUG=327641 Review URL: https://codereview.chromium.org/348583002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278775 0039d316-1c4b-4281-b951-d872f2087c98
-
hubbe@chromium.org authored
When transmitting 4Mbit over the "bad" udp_proxy profile, this reduces the amount of data sent from 12Mbit/s to 7Mbit/s, and seems to make it able to actually send more frames across the wire and recover faster. Review URL: https://codereview.chromium.org/343523005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278774 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278773 0039d316-1c4b-4281-b951-d872f2087c98
-
fgalligan@chromium.org authored
See https://codereview.chromium.org/344903003/ for the actual changes. BUG=386801 R=tomfinegan@chromium.org Review URL: https://codereview.chromium.org/348683002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278772 0039d316-1c4b-4281-b951-d872f2087c98
-
shuchen@chromium.org authored
The main usage of the keyCode attribute is to supports sending correct soft key events. On the on-screen keyboard, each key should have the keyCode attached, e.g. the key on the right side of TAB key, in US keyboard layout, it has key:'q',code:'KeyQ',keyCode:0x51; while in FR keyboard layout, it has key:'a',code:'KeyQ',keyCode:0x41. Another example is for UK extended keyboard layout, the '#' key (at the backslash key location), it has key:'#',code:'BackSlash',keyCode:0xDE; while for US keyboard, it has key:'\\',code:'BackSlash',keyCode:0xDC. A real case that this cl will fix is on FR on-screen keyboard, pressing Ctrl+A will trigger Ctrl+Q shortcut. BUG=355261 TEST=None Review URL: https://codereview.chromium.org/346513003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278771 0039d316-1c4b-4281-b951-d872f2087c98
-
reillyg@chromium.org authored
Convert numeric error code from libusb into human readable strings and log them. Some of these errors should, in addition, be passed up to the running script. BUG= Review URL: https://codereview.chromium.org/344793009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278769 0039d316-1c4b-4281-b951-d872f2087c98
-
prasadv@chromium.org authored
Due to recent Git mirgration on bots, builds are archived using Git hash in filename instead of SVN revision. Bisects should check for builds either with Git hash or SVN revisions and download. Also this CL allows bisect to continue when a revision under test fails to build (except good or bad revisions). BUG=385734,385356,380304 NOTRY=true Review URL: https://codereview.chromium.org/344123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278767 0039d316-1c4b-4281-b951-d872f2087c98
-
joaoe@opera.com authored
New API which extract a zip entry into a memory buffer. BUG=359428 Review URL: https://codereview.chromium.org/292443006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278766 0039d316-1c4b-4281-b951-d872f2087c98
-
yzshen@chromium.org authored
> [PPAPI] Add browser tests for compositor API > > And fix a bug found with the tests. > BindGraphics() does not work for a device which is in the same type with the current bound device. > > BUG=374383 > R=piman@chromium.org, raymes@chromium.org > > Review URL: https://codereview.chromium.org/324983005 TBR=penghuang@chromium.org Review URL: https://codereview.chromium.org/342323006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278765 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
BUG=379076 NOTRY=true Review URL: https://codereview.chromium.org/343173002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278763 0039d316-1c4b-4281-b951-d872f2087c98
-
courage@chromium.org authored
This change fixes a regression from r270325, allowing sign-out events to fire when the --enable-new-profile-management flag is absent, which is the default. The previous change added a check to filter out events related to non-primary accounts, but the primary account ID is not available during sign-out. Removing the filter fixes the regression. BUG=376421 Review URL: https://codereview.chromium.org/346913003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278762 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278760 0039d316-1c4b-4281-b951-d872f2087c98
-
garykac@chromium.org authored
BUG=386324 Review URL: https://codereview.chromium.org/340883005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278759 0039d316-1c4b-4281-b951-d872f2087c98
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia/+log/9efd66b8451f25465abd1027e09a3bcfa7b9c554..6b8f1ba1ef71a762e961c3a8bc8b344c88990a04 CQ_EXTRA_TRYBOTS=tryserver.chromium:linux_layout_rel TBR=reed@google.com BUG= Review URL: https://codereview.chromium.org/348043002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278757 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
BUG=386897 TBR=rogerta NOTRY=true Review URL: https://codereview.chromium.org/347953002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278755 0039d316-1c4b-4281-b951-d872f2087c98
-
zhenw@chromium.org authored
BUG=246844 It fixes the the bug on Linux machines by propagating the window minimization information to the content window after receiving X event from the platform, so the render side can update its visibility properly. Review URL: https://codereview.chromium.org/340783004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278754 0039d316-1c4b-4281-b951-d872f2087c98
-
spang@chromium.org authored
Not everything is in the right place yet, but this is the general idea. NOTRY=true Review URL: https://codereview.chromium.org/342983005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278753 0039d316-1c4b-4281-b951-d872f2087c98
-
jj-spoon@yandex-team.ru authored
"showSetDefault" and "allowAdvancedSettings" should not be set via RegisterCloudPrintValues call since they are not related to Google Cloud Print. R=bcwhite@chromium.org Review URL: https://codereview.chromium.org/263803007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278752 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
TemplateURL should not depend on TemplateURLService. BUG=386365 TEST=unit_tests R=pkasting@chromium.org TBR=profile_resetter, renderer_context_menu}, sky@chromium.org for chrome/browser/{importer Review URL: https://codereview.chromium.org/343823002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278751 0039d316-1c4b-4281-b951-d872f2087c98
-
mgiuca@chromium.org authored
1. Allow get_syzygy_binaries to run in cygwin. 2. On cygwin, get_syzygy_binaries makes all of the binaries it unpacks executable (to avoid "permission denied" errors during compilation). BUG=386911 Review URL: https://codereview.chromium.org/341183002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278748 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
BUG=385222 TBR=thakis@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/344193003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278747 0039d316-1c4b-4281-b951-d872f2087c98
-
jdonnelly@chromium.org authored
BUG=386638 Review URL: https://codereview.chromium.org/342713007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278746 0039d316-1c4b-4281-b951-d872f2087c98
-
newt@chromium.org authored
The benefits: Android lint can find resources that don't exist in all resolutions, it's clearer what resolution these images are, and the drawable folder is neater as well. The build output after this change is identical, thanks to recent build changes (https://codereview.chromium.org/321463002) as well as the method MoveImagesToNonMdpiFolders() in package_resources.py. BUG=289843 R=dtrainor@chromium.org, tedchoc@chromium.org Review URL: https://codereview.chromium.org/340913003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278745 0039d316-1c4b-4281-b951-d872f2087c98
-
fmalita@chromium.org authored
Blink rebaselines have landed. BUG=383435 TBR=reed@google.com,humper@google.com Review URL: https://codereview.chromium.org/345933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278744 0039d316-1c4b-4281-b951-d872f2087c98
-
rmcilroy@chromium.org authored
BUG=387110 TBR=yzshen@chromium.org Review URL: https://codereview.chromium.org/348533006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278742 0039d316-1c4b-4281-b951-d872f2087c98
-
asvitkine@chromium.org authored
Exposes getting the installed version from UpgradeDetector and uses it from VariationService when simulating new Finch seeds, so that the simulation more accurately reflects what will happen on a restart when that seed will be applied. BUG=315807 Review URL: https://codereview.chromium.org/333313003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278740 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
host-list-empty was placed inside of daemon-control, so it was not visible when daemon-control div was not visible. BUG=384053 R=jamiewalch@chromium.org, kelvinp@chromium.org Review URL: https://codereview.chromium.org/345773005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278739 0039d316-1c4b-4281-b951-d872f2087c98
-
vabr@chromium.org authored
Currently, ChromePasswordManagerClient informs the PasswordAutofillAgent almost every time about changed availability of the internals page. The only exception is when the client is created. As a result, new tabs opened after a chrome://password-manager-internals tab will only cause browser-side logs. When the client is created, the agent on the renderer side may not exist yet. So it does not help to send messages to the agent during constructing the client. Instead, this CL introduces a new "ping" IPC message from the renderer to the browser, which the agent uses to explicitly request logging state update from the client at the time the agent is constructed. BUG=384269 Review URL: https://codereview.chromium.org/336763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278738 0039d316-1c4b-4281-b951-d872f2087c98
-
dnicoara@chromium.org authored
BUG=381329 Review URL: https://codereview.chromium.org/332103003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278737 0039d316-1c4b-4281-b951-d872f2087c98
-
hirono@chromium.org authored
BUG=386553 TEST=run the test Review URL: https://codereview.chromium.org/340843005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278736 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
The service is not a SchemaRegistry anymore but owns one instead. This enables the service to own subclasses of SchemaRegistry. Also added a ForwardingSchemaRegisy, which wraps another SchemaRegistry. This will be used in a future CL. R=bartfab@chromium.org TBR=kalman@chromium.org BUG=224596 Review URL: https://codereview.chromium.org/349643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278735 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
Note: this is a reland of https://codereview.chromium.org/341043005 which was reverted due to memory leaks in tests. Those leaks were fixed in https://codereview.chromium.org/348713004. This enables policy-for-extensions running in Public Sessions, and for extensions running as Kiosk Apps too. TBR=bartfab@chromium.org BUG=224596 Review URL: https://codereview.chromium.org/335113008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278734 0039d316-1c4b-4281-b951-d872f2087c98
-
baranovich@yandex-team.ru authored
BUG=377538 R=jgraettinger@chromium.org TEST=SpdyStream/SpdySession/SpdyNetworkTransaction push related tests. Re-enabled previously disabled tests: SpdyNetworkTransactionTest.ServerPushCrossOriginCorrectness SpdyNetworkTransactionTest.ServerPushInvalidAssociatedStreamID9 Review URL: https://codereview.chromium.org/331663007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278733 0039d316-1c4b-4281-b951-d872f2087c98
-
treib@chromium.org authored
BUG=372381 Review URL: https://codereview.chromium.org/334283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278732 0039d316-1c4b-4281-b951-d872f2087c98
-