- 25 Jul, 2014 40 commits
-
-
hirono@chromium.org authored
In search result, the entries have same names and it causes unstability of the sort. The CL let the compare function to see URL when the names are same. The CL also moves the sort functions from the UI class to the model class. BUG=397386 TEST=manually Review URL: https://codereview.chromium.org/419173002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285537 0039d316-1c4b-4281-b951-d872f2087c98
-
hirono@chromium.org authored
BUG=392981 TEST=manually Review URL: https://codereview.chromium.org/419063004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285536 0039d316-1c4b-4281-b951-d872f2087c98
-
hirono@chromium.org authored
To show the focus ring in the correct size, the CL enlarges the size of range inputs in Gallery. Instead, the CL adds pseudo element to draw the range track (a thin horizontal bar). BUG=397062 TEST=manually Review URL: https://codereview.chromium.org/419153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285535 0039d316-1c4b-4281-b951-d872f2087c98
-
shuchen@chromium.org authored
Leverage OnFocus event to let component IME extension know about the current screen type (e.g. login, lock, etc.) so that on-screen keyboard won't popup new window/page at login/lock screens. BUG=395621 TEST=None Review URL: https://codereview.chromium.org/418273002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285534 0039d316-1c4b-4281-b951-d872f2087c98
-
kuan@chromium.org authored
- store the properties into DistilledPageInfo - add test using OpenGraphProtocol and Schema.Org markup. BUG=396124 TBR=nyquist Review URL: https://codereview.chromium.org/411253008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285533 0039d316-1c4b-4281-b951-d872f2087c98
-
eroman@chromium.org authored
This refactor extracts common functionality to simplify adding the equivalent OpenSSL implementation: * Extracts the conversion of public exponent from a big integer to an unsigned integer * Restricts key sizes to multiples of 8, between 256 and 16K. This is the more restrictive range supported by NSS. BUG=389317 Review URL: https://codereview.chromium.org/401233004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285532 0039d316-1c4b-4281-b951-d872f2087c98
-
reillyg@chromium.org authored
Add a /update resource which accepts a new software package (assuming the hash is correct) and performs an in-place upgrade. To avoid leaving the device in an unusable state the old version remains running until the new version starts to accept HTTP connections. At this point the Tornado I/O loop is running correctly and even if USB functionality is broken the device should accept another software update to fix it. BUG=396682 R=rockot@chromium.org,rpaquay@chromium.org,kalman@chromium.org Review URL: https://codereview.chromium.org/412243002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285531 0039d316-1c4b-4281-b951-d872f2087c98
-
mkwst@chromium.org authored
'WebURLRequest::TargetType' has been dropped in Blink in favor of 'RequestContext' and 'FrameType', matching the Fetch specification's changes, and allowing both more granularity in various Blink-side checks and more clarity around the thing that caused a request, and the frame that the request affects. This CL should have zero practical effect, as it's simply hoisting the translation work that 'WebURLRequest::setTargetType' is already doing up into the content layer to bring us one step closer to removing the concept entirely. BUG=390497 Review URL: https://codereview.chromium.org/392333004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285530 0039d316-1c4b-4281-b951-d872f2087c98
-
wtc@chromium.org authored
If chrome::VersionInfo::GetVersionStringModifier() returns an empty string (which is the case for the Stable channel and any unofficial builds), don't append a space. R=rtenneti@chromium.org,thestig@chromium.org BUG=none Review URL: https://codereview.chromium.org/420613004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285529 0039d316-1c4b-4281-b951-d872f2087c98
-
xians@chromium.org authored
Fixed the crash when adding a chromium sink to remote audio track or adding a track to peerconnection more than once. NOTRY=true BUG=396447 TEST=open peerConnection demo, http://googlechrome.github.io/webrtc/samples/web/content/peerconnection/ 2. start a call 3. Open JS console and input below codes: # adding a chromium sink to remote audio track: var v = new webkitMediaStream(); v.addTrack(pc2.getRemoteStreams()[0].getAudioTracks()[0]); var a = document.createElement('audio'); a.src = URL.createObjectURL(v); # add a track to peer connection more than once: var v = new webkitMediaStream(); v.addTrack(pc2.getRemoteStreams()[0].getAudioTracks()[0]); pc1.addStream(v); Review URL: https://codereview.chromium.org/411903002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285528 0039d316-1c4b-4281-b951-d872f2087c98
-
ivandavid@chromium.org authored
There are a 8 basic test cases of varying types including text only html files, some html files with forms, an image, and a color-gradient. BUG=388517 Review URL: https://codereview.chromium.org/416433002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285527 0039d316-1c4b-4281-b951-d872f2087c98
-
tommycli@chromium.org authored
Removes an erroneous DCHECK added in this patch: https://codereview.chromium.org/385013002/ This DCHECK is erroneous, because the Install() function in DefaultComponentInstaller is actually called on a different task runner than the member task runner. It's called from ComponentUnpacker::Install. ComponentUnpacker has a different task runner with a different sequence token, so it's erroneous to DCHECK it against the member task runner of DefaultComponentInstaller. BUG=397264 Review URL: https://codereview.chromium.org/419103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285526 0039d316-1c4b-4281-b951-d872f2087c98
-
mtomasz@chromium.org authored
This CL adds support to truncate files to a desired length via FileWriter's truncate() method in JS. Note, that truncating via NaCl IO is not supported yet. TEST=unit_tests, browser_tests: *FileSystemProvider*Truncate* BUG=391362 Review URL: https://codereview.chromium.org/417983002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285525 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
We added a new blink_resources.gyp file to Blink repo in order to get rid of blink_chromium_resources action from webkit_resources.gyp and make the migration easier in https://src.chromium.org/viewvc/blink?revision=178275&view=revision This updates the Chromium side to reference the new generated path. BUG=338338 TEST=None R=jamesr@chromium.org TBR=darin@chromium.org Review URL: https://codereview.chromium.org/398243002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285524 0039d316-1c4b-4281-b951-d872f2087c98
-
nkostylev@chromium.org authored
This CL only moves account picker related resources that are used on Chrome OS (login UI) and Chrome Win/Mac/Linux (user_manager UI). The rest of Chrome OS out-of-box/login WebUI resources will be moved later as well. BUG=387608,370175 R=dzhioev@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/402403005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285523 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
These now pass thanks to Tim's shutdown fixes. BUG=396295 Review URL: https://codereview.chromium.org/421473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285522 0039d316-1c4b-4281-b951-d872f2087c98
-
horo@chromium.org authored
BUG=327256 Review URL: https://codereview.chromium.org/411283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285521 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285520 0039d316-1c4b-4281-b951-d872f2087c98
-
tyoshino@chromium.org authored
> NaCl: Update revision in DEPS, r13506 -> r13526 > > This pulls in the following Native Client changes: > > r13507: (noelallen) Reapply patch which was reverted due to conflict. > r13508: (dschuff) PNaCl Driver: do not generate temp file names beyond Windows' > MAX_PATH limit > r13509: (jvoung) Add a flag to pnacl-finalize that allows users to keep > function names. > r13510: (dschuff) Disable flaky sandboxed translator tests on mac > r13511: (dschuff) Update revision for PNaCl r13466->r13509 > r13512: (ncbray) Fix untrusted.gypi and build_nexe.py > r13513: (noelallen) Cleanup bionic build script. > r13514: (dyen) Added initial pass of nacl_irt_code_data_alloc. > r13515: (sbc) Use custom exception class for errors in package_version. > r13516: (hidehiko) Non-SFI mode: SCONS_NONSFI_TC clean up. > r13517: (hidehiko) Non-SFI Mode: Refactoring. Provide non-SFI version of > nacl_irt_query_core. > r13518: (binji) Revert "Non-SFI mode: SCONS_NONSFI_TC clean up." > r13519: (bradnelson) Make the trybots fail early if 'git cl try' is mistakenly > used. > r13520: (bradnelson) Make build_nexe.py rebuild when script itself has changed. > r13521: (noelallen) Updates GN dep, and cleans up some toolchain prep > definitions to make it easier to debug what's going on. > r13523: (teravest) Add embedder interface for fatal log messages. > r13524: (bradnelson) Passing --config-name to build_nexe.py for all arches. > r13525: (teravest) Create a sel_ldr_launcher_base target. > r13526: (teravest) Revert "Add embedder interface for fatal log messages." > > R=ncbray@chromium.org > BUG=none > TEST=browser_tests and nacl_integration > CQ_EXTRA_TRYBOTS=tryserver.chromium:linux_rel_precise32,linux_arm_cross_compile,linux_nacl_sdk_build > > CC: native-client-reviews@googlegroups.com, binji@chromium.org, bradnelson@google.com, dschuff@chromium.org, dyen@chromium.org, hidehiko@chromium.org, jvoung@google.com, ncbray@chromium.org, noelallen@google.com, sbc@chromium.org, teravest@chromium.org > > Review URL: https://codereview.chromium.org/418213002 TBR=bradnelson@google.com Review URL: https://codereview.chromium.org/420603005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285519 0039d316-1c4b-4281-b951-d872f2087c98
-
ericzeng@chromium.org authored
Extensions can now use the <extensionoptions> page to embed another extension's options page with basic iframe-like behavior and features. In this CL: - Create a new guest view (ExtensionOptionsGuest) for safely embedding extension options - Modify existing guest view-related classes to support the new view - Add API tests to verify that the guest view can be created and that it has access to privileged APIs. BUG=386838 TEST=browser_tests Review URL: https://codereview.chromium.org/378783002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285518 0039d316-1c4b-4281-b951-d872f2087c98
-
mkosiba@chromium.org authored
We shouldn't crash when the response headers map is null. BUG=394173 Review URL: https://codereview.chromium.org/392113002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285517 0039d316-1c4b-4281-b951-d872f2087c98
-
calamity@chromium.org authored
This CL allows apps to customize their appearance in the per-app window list in the Ash shelf by changing their favicon. Each app window will use the favicon if it exists, falling back to the current behavior of a downscaled app icon if it doesn't. BUG=390907 Review URL: https://codereview.chromium.org/411543009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285516 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
Exclude USE_AURA specific code with preprocessor blocks. Related to https://codereview.chromium.org/413303003/ (both are needed for a clean build on ToT@285384) BUG=395507 TEST=NONE R=sky@chromium.org Review URL: https://codereview.chromium.org/418223002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285515 0039d316-1c4b-4281-b951-d872f2087c98
-
calamity@chromium.org authored
This CL adds a per-view flex property to BoxLayout. The flex property functions similarly to the CSS flexbox concept of flex, using the child view's preferred size as the flex basis and then adding or removing space within each flexed so that all views fit within the parent. This CL also removes MAIN_AXIS_ALIGNMENT_FILL as it is superceded by SetDefaultFlex(). BUG=386475 Review URL: https://codereview.chromium.org/360213002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285514 0039d316-1c4b-4281-b951-d872f2087c98
-
reillyg@chromium.org authored
This software package will need to be uploaded to the test hardware. Python can easily run code out of a zip file. The package hash is saved to verify integrity and as a versioning mechanism to allow tests to ensure that they are running against a device with the expected software version. BUG=396682 R=rockot@chromium.org,rpaquay@chromium.org,kalman@chromium.org Review URL: https://codereview.chromium.org/414833004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285513 0039d316-1c4b-4281-b951-d872f2087c98
-
qyearsley@chromium.org authored
BUG=395787 Review URL: https://codereview.chromium.org/399893003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285512 0039d316-1c4b-4281-b951-d872f2087c98
-
chromeos-lkgm@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285511 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
BUG=397426 TBR=finnur@chromium.org Review URL: https://codereview.chromium.org/414223002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285510 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285509 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/293253002/jam@chromium.org authored
Reason for revert: this is still flaking. more info in bug TBR=palmer NOTRY=true Original issue's description: > Reenable UpdateDynamicPKPMaxAge0 test. > > BUG=375538 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=281863 Review URL: https://codereview.chromium.org/412353006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285508 0039d316-1c4b-4281-b951-d872f2087c98
-
bradnelson@google.com authored
This pulls in the following Native Client changes: r13507: (noelallen) Reapply patch which was reverted due to conflict. r13508: (dschuff) PNaCl Driver: do not generate temp file names beyond Windows' MAX_PATH limit r13509: (jvoung) Add a flag to pnacl-finalize that allows users to keep function names. r13510: (dschuff) Disable flaky sandboxed translator tests on mac r13511: (dschuff) Update revision for PNaCl r13466->r13509 r13512: (ncbray) Fix untrusted.gypi and build_nexe.py r13513: (noelallen) Cleanup bionic build script. r13514: (dyen) Added initial pass of nacl_irt_code_data_alloc. r13515: (sbc) Use custom exception class for errors in package_version. r13516: (hidehiko) Non-SFI mode: SCONS_NONSFI_TC clean up. r13517: (hidehiko) Non-SFI Mode: Refactoring. Provide non-SFI version of nacl_irt_query_core. r13518: (binji) Revert "Non-SFI mode: SCONS_NONSFI_TC clean up." r13519: (bradnelson) Make the trybots fail early if 'git cl try' is mistakenly used. r13520: (bradnelson) Make build_nexe.py rebuild when script itself has changed. r13521: (noelallen) Updates GN dep, and cleans up some toolchain prep definitions to make it easier to debug what's going on. r13523: (teravest) Add embedder interface for fatal log messages. r13524: (bradnelson) Passing --config-name to build_nexe.py for all arches. r13525: (teravest) Create a sel_ldr_launcher_base target. r13526: (teravest) Revert "Add embedder interface for fatal log messages." R=ncbray@chromium.org BUG=none TEST=browser_tests and nacl_integration CQ_EXTRA_TRYBOTS=tryserver.chromium:linux_rel_precise32,linux_arm_cross_compile,linux_nacl_sdk_build CC: native-client-reviews@googlegroups.com, binji@chromium.org, bradnelson@google.com, dschuff@chromium.org, dyen@chromium.org, hidehiko@chromium.org, jvoung@google.com, ncbray@chromium.org, noelallen@google.com, sbc@chromium.org, teravest@chromium.org Review URL: https://codereview.chromium.org/418213002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285507 0039d316-1c4b-4281-b951-d872f2087c98
-
vmpstr@chromium.org authored
There's an issue with adding some of the tilings, since the scales collide (or are not valid otherwise), which is causing some DCHECKs to be triggered. This just shuffles the scales, as well as make the layer smaller so that we don't create massive amounts of textures (which is pretty slow even on my desktop). R=reveman, jbedley Review URL: https://codereview.chromium.org/413243004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285506 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285505 0039d316-1c4b-4281-b951-d872f2087c98
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia/+log/57493ba62a7ec6a6038e64afa891b3c98a7cc15d..0925a5784c8424e3f9d75dbf4612ada12dc37131 CQ_EXTRA_TRYBOTS=tryserver.chromium:linux_layout_rel TBR=robertphillips@google.com BUG= Review URL: https://codereview.chromium.org/418183004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285504 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
R=darin@chromium.org Review URL: https://codereview.chromium.org/411253011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285503 0039d316-1c4b-4281-b951-d872f2087c98
-
scottmg@chromium.org authored
R=brettw@chromium.org BUG=393046,354261 Review URL: https://codereview.chromium.org/412423002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285502 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
* Correct spelling in several places. * Add handling of the error during onMountCompleted event so that the volume shows up in UI and users can format it. BUG=396531 Review URL: https://codereview.chromium.org/409353002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285501 0039d316-1c4b-4281-b951-d872f2087c98
-
tyoshino@chromium.org authored
Attempt to fix the flakiness by making sure the server handler doesn't exit before the client closes. BUG=389084 R=jgraettinger,yhirano Review URL: https://codereview.chromium.org/410383003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285500 0039d316-1c4b-4281-b951-d872f2087c98
-
vmpstr@chromium.org authored
This patch puts in a heuristic that earlies out from analysis when we have more than one draw op. The intent here is that in most cases, if we see more than one draw operation, then analysis is likely not to be solid. It also removes HasText from analysis canvas, since the only remaining use for this was a previous early out heuristic. BUG=397198 R=enne Review URL: https://codereview.chromium.org/418093003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285499 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
Upstream added SSL_get0_certificate_types while we added SSL_get_client_certificate_types in parallel. Switch to upstream's API. BUG=388000 Review URL: https://codereview.chromium.org/415853002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285498 0039d316-1c4b-4281-b951-d872f2087c98
-