- 20 Mar, 2015 40 commits
-
-
eroman authored
This change was automatically generated by running: update_use_counter_feature_enum.py BUG=428806 Review URL: https://codereview.chromium.org/1024763002 Cr-Commit-Position: refs/heads/master@{#321517}
-
deepak.m1 authored
currently behavior of alt+Left arrow key and Left Arrow key are same. Check added so that when user select alt+Left arrow key then it will be handled by default behavior. BUG=468605 Review URL: https://codereview.chromium.org/1019193002 Cr-Commit-Position: refs/heads/master@{#321516}
-
hirono authored
BUG=450630 TEST=None Review URL: https://codereview.chromium.org/1018853005 Cr-Commit-Position: refs/heads/master@{#321515}
-
behara.ms authored
In Compositor Frame Time counter the text "time(ms)" gets chopped from right side. Also in FPS Display "GPU raster" status get chopped from right side. This is caused due to width constraint. Rearranging the Display items to display all items properly BUG=445877 Review URL: https://codereview.chromium.org/1001123003 Cr-Commit-Position: refs/heads/master@{#321514}
-
calamity authored
This CL makes the ContentsView's API state-keyed rather than page index keyed. This removes cruft from callers of SetActivePage and will support further refactors. BUG=455059 TBR=jamescook@chromium.org, benwells@chromium.org Review URL: https://codereview.chromium.org/947903002 Cr-Commit-Position: refs/heads/master@{#321513}
-
rdevlin.cronin authored
Add capability for having a "Report abuse" checkbox on the extension uninstall dialog. Currently, don't show this until we have the field trial specifications worked out. BUG=441377 Review URL: https://codereview.chromium.org/1010953002 Cr-Commit-Position: refs/heads/master@{#321512}
-
mseaborn authored
This pulls in the following Native Client changes: 4db937c: (jfb@chromium.org) Update revision for PNaCl db53905: (jvoung@chromium.org) PNaCl: Update LLVM revision in pnacl/COMPONENT_REVISIONS 04b09f1: (jfb@chromium.org) PNaCl: Update LLVM revision in pnacl/COMPONENT_REVISIONS 924decd: (hidehiko@chromium.org) Non-SFI mode: Enable C++11 features on gyp build. 7fe2747: (jfb@chromium.org) Overflow test: improve testing of signed values around 0 d632af2: (jfb@chromium.org) Update revision for PNaCl cc78fa0: (sbc@chromium.org) Update sysroot creator scripts toolchain. Changes: https://chromium.googlesource.com/native_client/src/native_client/+log/f418b37b22393d82c08d28ce1c151bed933d2c9b..cc78fa093218f9a9a5e576002e197e17da379023 BUG=none TEST=browser_tests and nacl_integration CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_chromium_dbg_32_ng,linux_arm_compile,linux_nacl_sdk_build Review URL: https://codereview.chromium.org/1022923004 Cr-Commit-Position: refs/heads/master@{#321511}
-
reillyg authored
In commit 3576d464 the conversion of the selected directory to an absolute path was moved from FileSystemChooseEntryFunction::ConfirmDirectoryAccessOnFileThread to FilesSelected. As the latter runs on the UI thread this violated I/O restrictions and results in a DCHECK. This was not caught by tests because in the test environment I/O appears to be allowed on the main thread. This change splits the call to IsUnderNonNativeLocalPath from the conversion to an absolute path. BUG=457841 Review URL: https://codereview.chromium.org/1023793002 Cr-Commit-Position: refs/heads/master@{#321510}
-
Daichi Hirono authored
BUG=None TEST=None TBR=pneubeck@chromium.org Review URL: https://codereview.chromium.org/1021103002 Cr-Commit-Position: refs/heads/master@{#321509}
-
estade authored
BUG=446700 Review URL: https://codereview.chromium.org/997713004 Cr-Commit-Position: refs/heads/master@{#321508}
-
dschuyler authored
RenderText previously only had a SetText to alter the text. Calling SetText would reset the text styling already setup. It can be more efficient in some cases to preserve the existing font styling and when only adding text to the end of the RenderText. This patch adds AppendText that allows adding to an exiting RenderText without disturbing the existing styling. This change is related to (and used by) CL 795933009. BUG= Review URL: https://codereview.chromium.org/1014163002 Cr-Commit-Position: refs/heads/master@{#321507}
-
jlklein authored
Required wiring up the options handler for now, but that can all go away once settingsPrivate is ready. BUG= Review URL: https://codereview.chromium.org/1019403002 Cr-Commit-Position: refs/heads/master@{#321506}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/d800d87..adf9990 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=egdaniel@google.com Review URL: https://codereview.chromium.org/1021023003 Cr-Commit-Position: refs/heads/master@{#321505}
-
jdduke authored
Synthetic gestures rely on a flush signal from the InputRouter to indicate when a particular gesture has finished. Currently, this fails to capture fling animations, as they are hosted in the renderer. Wire up the fling end notification to the InputRouter, allowing it to gate flush signalling based on fling animation existence. This will allow proper execution of synthetic fling gestures with telemetry. BUG=321141 Review URL: https://codereview.chromium.org/1003023002 Cr-Commit-Position: refs/heads/master@{#321504}
-
benwells authored
Disabled TabCaptureApiTest.CaptureInSplitIncognitoMode everywhere. Disabled MultiProfileFileManagerBrowserTest.BasicDownloads and CopyBetweenWindows/FileManagerBrowserTest under MSan. TBR=mtomasz@chromium.org, miu@chromium.org BUG=468980,468982,468608 Review URL: https://codereview.chromium.org/1027583002 Cr-Commit-Position: refs/heads/master@{#321503}
-
garykac authored
After this cl, the last remaining reference to remoting.AppMode in AppRemoting is in app_remoting.js. That will be addressed in a followup cl. Move the following out of remoting.js and into app-specific locations: * remoting.signOut (into crd_event_handlers.js) * remoting.showErrorMessage (into desktop_remoting.js) * isWindowed_ (into desktop_remoting.js) * remoting.promptClose (into desktop_remoting.js) * remoting.isMe2MeInstallable (into local_host_section.js) Rename Delegate.signInFailed -> Delegate.handleAuthError Add Application.onAuthError to call Delegate.handleAuthError Change references to global remoting.showErrorMessage to remoting.app.onAuthError BUG= Review URL: https://codereview.chromium.org/1020743002 Cr-Commit-Position: refs/heads/master@{#321502}
-
kcarattini authored
Makes the primary buttons first in tab order. BUG=466390 Review URL: https://codereview.chromium.org/1011283003 Cr-Commit-Position: refs/heads/master@{#321501}
-
reddaly authored
BUG=451526 Review URL: https://codereview.chromium.org/1012173002 Cr-Commit-Position: refs/heads/master@{#321500}
-
bondd authored
"Verifying card" status overlay is displayed while the dialog is waiting for card verification. Once the card has been verified "Your card is verified" is displayed for one second and then the dialog closes. If the card was successfully verified then the card data on the form will be filled. This CL is not pixel-perfect with the UI mocks. That will come in a later CL. No error messages are displayed on card verification failure. Coming soon in another CL. Video attached to bug: https://code.google.com/p/chromium/issues/detail?id=448572#c11 BUG=448572 Review URL: https://codereview.chromium.org/1014683007 Cr-Commit-Position: refs/heads/master@{#321499}
-
jlklein authored
by disabling the selectedAttribute as a workaround. See https://github.com/Polymer/polymer/issues/946. R=michaelpg@chromium.org BUG= Review URL: https://codereview.chromium.org/1010363003 Cr-Commit-Position: refs/heads/master@{#321498}
-
ananta authored
We use std::unique to remove duplicate entries from the fallback list. BUG=467459 Review URL: https://codereview.chromium.org/1019743004 Cr-Commit-Position: refs/heads/master@{#321497}
-
hush authored
This makes sure we don't break crbug.com/417479. BUG= Review URL: https://codereview.chromium.org/1002013003 Cr-Commit-Position: refs/heads/master@{#321496}
-
amistry authored
BUG=467832 Review URL: https://codereview.chromium.org/960753003 Cr-Commit-Position: refs/heads/master@{#321495}
-
mtomasz authored
Promise.all was called with a double array [[p1, p2]], instead of [p1, p2], which caused completing initialization of all volumes before they are added to the volume list, what caused failing tests in: crrev.com/985533004. TEST=Fixes test failures in crrev.com/985533004. BUG=None Review URL: https://codereview.chromium.org/1020113002 Cr-Commit-Position: refs/heads/master@{#321494}
-
dfalcantara authored
* In-page navigations no longer cancel a fetcher. URL checks are removed for recording banner events. * Remove dead code in AppBannerSettingsHelper for blocking banners. * Add a new Java test for popping up a web app banner. This will be extended to allow clicking on the "add to home screen" button soon. BUG=468148 TEST=AppBannerManagerTest Review URL: https://codereview.chromium.org/1017193002 Cr-Commit-Position: refs/heads/master@{#321493}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/6c1b338..d800d87 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=egdaniel@google.com Review URL: https://codereview.chromium.org/1021853002 Cr-Commit-Position: refs/heads/master@{#321492}
-
miletus authored
pathological_mobile_sites_001.wpr is copied from key_mobile_sites_000.wpr BUG=447508 Review URL: https://codereview.chromium.org/999173006 Cr-Commit-Position: refs/heads/master@{#321491}
-
bartfab authored
This CL adds "Add $provider..." entries to the "Private network" and "Add connection" drop-down menus on the Chrome OS settings page. The contents of these menus updates dynamically as VPN providers are added/removed. BUG=460428 TEST=Manual Review URL: https://codereview.chromium.org/1017443002 Cr-Commit-Position: refs/heads/master@{#321490}
-
vmiura authored
R=piman@chromium.org BUG=468936 Review URL: https://codereview.chromium.org/1016193003 Cr-Commit-Position: refs/heads/master@{#321489}
-
huangs authored
Previously we store Profile and use it to retrieve TopSites. This caused debug mode crash when we tried to retrieve TopSites from Profile from a different thread. By storing TopSites directly this problem is averted. BUG=468141 Review URL: https://codereview.chromium.org/1021803002 Cr-Commit-Position: refs/heads/master@{#321488}
-
jbauman authored
If a compositor draws into a surface, then it effectively has a parent (the cc::Display) and should adjust its timing. Review URL: https://codereview.chromium.org/1020973002 Cr-Commit-Position: refs/heads/master@{#321487}
-
gcasto authored
If the user has already entered data into a form and the frame containing it is detached, prompt to save. This fixes password saving on Sears.com, as they perform authentication by removing an iframe containing the login information when submission is successful. BUG=450806 Review URL: https://codereview.chromium.org/1012093005 Cr-Commit-Position: refs/heads/master@{#321486}
-
ianwen authored
Roll from 98a434576d8d9a65f9bdb8ea161e158142c0c5e5 to 8b18ef7e4dc385be93ff2526dd8ac005e6c5ed6e Commits included: commit 8b18ef7e4dc385be93ff2526dd8ac005e6c5ed6e Author: Ian Wen <ianwen@chromium.org> Date: Tue Mar 10 11:23:22 2015 Add recycler view to clank RecyclerView lives in v7 support library and is part of the newest APIs provided by Lollipop. This CL also removes the palette from clank, because it is no longer needed. Change-Id: Ie98f860d1c9f2ebabedcedcc3748748581bfff45 Reviewed-on: https://chromium-review.googlesource.com/258192Reviewed-by:Aurimas Liutikas <aurimas@chromium.org> Commit-Queue: Aurimas Liutikas <aurimas@chromium.org> Tested-by:
Aurimas Liutikas <aurimas@chromium.org> Reviewed-by:
Armand Navabi <navabi@chromium.org> BUG=465201 Review URL: https://codereview.chromium.org/1013543003 Cr-Commit-Position: refs/heads/master@{#321485}
-
grt authored
This will allow them to be used from a utility process. BUG=462584 R=mattm@chromium.org TBR=sky@chromium.org Review URL: https://codereview.chromium.org/1015363003 Cr-Commit-Position: refs/heads/master@{#321484}
-
sergeyu authored
This is an attempto to resolve bug 461246. Issues there is that close() fails sometimes on OSX for unknown reason. My guess is that it close() fails with EIO error for some reason, but EIO may be ignored in this case as the sockets gets closed anyway. BUG=461246 Review URL: https://codereview.chromium.org/1025533002 Cr-Commit-Position: refs/heads/master@{#321483}
-
estade authored
BUG=467775 Review URL: https://codereview.chromium.org/1014913003 Cr-Commit-Position: refs/heads/master@{#321482}
-
chrome://app-list/amistry authored
BUG=439143 Review URL: https://codereview.chromium.org/1023623002 Cr-Commit-Position: refs/heads/master@{#321481}
-
rdevlin.cronin authored
Add metrics to determine how often and for how long UserScriptListener is throttling network traffic. BUG=467003 Review URL: https://codereview.chromium.org/1011363005 Cr-Commit-Position: refs/heads/master@{#321480}
-
davidben authored
Summary of changes available at: https://boringssl.googlesource.com/boringssl/+log/bf0df92..642f149 BUG=none Review URL: https://codereview.chromium.org/1027473002 Cr-Commit-Position: refs/heads/master@{#321479}
-
rouslan authored
Announce "Verifying card". Announce the error message and focus the text field for recoverable errors. BUG=466699 Review URL: https://codereview.chromium.org/1015013002 Cr-Commit-Position: refs/heads/master@{#321478}
-