- 05 Dec, 2014 40 commits
-
-
scheib authored
device/bluetooth will soon be accessed by content/browser. This change converts it from a static library to a shared component. BUG=438305 Review URL: https://codereview.chromium.org/778443002 Cr-Commit-Position: refs/heads/master@{#307049}
-
binji authored
BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/781623002 Cr-Commit-Position: refs/heads/master@{#307048}
-
samuong authored
BUG=chromedriver:992 TBR=stgao@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/764373003 Cr-Commit-Position: refs/heads/master@{#307047}
-
sullivan authored
BUG=437085 Review URL: https://codereview.chromium.org/778923003 Cr-Commit-Position: refs/heads/master@{#307046}
-
kenobi authored
- Expand the PromiseErrorFilter to allow multiple types of errors to be filtered out. - Add a new type of allowed error, namely errors from the compiler failing to unwrap the result of a returned Promise chain. Example: /** @return {!Promise<string>} */ var getStringAsync = function() { /** @return {!Promise<string>} */ var generateString = function() {return Promise.resolve('foo');}; return Promise.resolve().then(generateString); }; The compiler will emit an error that looks like ERROR - inconsistent return type found : Promise<Promise<string>> required: Promise<string> BUG=406995 Review URL: https://codereview.chromium.org/776273003 Cr-Commit-Position: refs/heads/master@{#307045}
-
mseaborn authored
This removes some uses of Bit('target_ARCH'), the definitions of which have been removed from the NaCl side. BUG=https://code.google.com/p/nativeclient/issues/detail?id=2703 TEST=nacl_integration Review URL: https://codereview.chromium.org/778173002 Cr-Commit-Position: refs/heads/master@{#307044}
-
tfarina authored
This was checked with the following command line: $ out/Debug/gn check out_gn/Debug //ui/* And cleaned until it reported "Header dependency check OK". BUG=367595,376000 TEST=see above R=sky@chromium.org Review URL: https://codereview.chromium.org/769943003 Cr-Commit-Position: refs/heads/master@{#307043}
-
rogerta authored
Replace direct access to kGoogleServicesUsername with calls to SigninManager. There is no functional change in this CL. Some places outside SigninManager still use the pref, like one_click_signinin and ProfileIOData, but that is deprecated code that will go away. I will remove that code in separate CLs. BUG=107160 Review URL: https://codereview.chromium.org/763673002 Cr-Commit-Position: refs/heads/master@{#307042}
-
rlp authored
Google to other. This also resets the pref to off if they go away from Google. BUG=437889 Review URL: https://codereview.chromium.org/780703004 Cr-Commit-Position: refs/heads/master@{#307041}
-
jamescook authored
app_shell is pure-aura, so cannot rely on the usual views::WebView and views::Widget initial-focus behavior. It must manually set focus on the WebContents during creation. BUG=438751 TEST=added to app_shell_browsertests ShellApiTest Review URL: https://codereview.chromium.org/754313003 Cr-Commit-Position: refs/heads/master@{#307040}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/a9bf1aa..95f9b5f CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=halcanary@google.com Review URL: https://codereview.chromium.org/756423007 Cr-Commit-Position: refs/heads/master@{#307039}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/fde5bea..e542608 TBR=schenney@chromium.org,dominicc@chromium.org Review URL: https://codereview.chromium.org/757943003 Cr-Commit-Position: refs/heads/master@{#307038}
-
mvanouwerkerk authored
TBR=avi@chromium.org for comment-only change in content/public Review URL: https://codereview.chromium.org/780783004 Cr-Commit-Position: refs/heads/master@{#307037}
-
melandory authored
With this patch work on "Allow to collect URL?" bubble starts. View of bubble is implemented. But bubble itself never will be shown to a user BUG=435080 R=vabr@chromium.org Review URL: https://codereview.chromium.org/765073004 Cr-Commit-Position: refs/heads/master@{#307036}
-
mkosiba authored
This rolls the AOSP manifest to match build 1622219 and the glue layer to the most recent version. BUG=None TESTS=build Review URL: https://codereview.chromium.org/781833003 Cr-Commit-Position: refs/heads/master@{#307035}
-
grt authored
The changes trickle through the DLL loader as well. BUG=24672 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/775383002 Cr-Commit-Position: refs/heads/master@{#307034}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/96e3f0f..fde5bea TBR=schenney@chromium.org,dominicc@chromium.org Review URL: https://codereview.chromium.org/778153002 Cr-Commit-Position: refs/heads/master@{#307033}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/0be41a0..a9bf1aa CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=halcanary@google.com Review URL: https://codereview.chromium.org/751383003 Cr-Commit-Position: refs/heads/master@{#307032}
-
kenobi authored
BUG=None Review URL: https://codereview.chromium.org/781443004 Cr-Commit-Position: refs/heads/master@{#307031}
-
gayane authored
Fixing issues introduced by https://codereview.chromium.org/719463003/. - Fixing the constant suffix in case of boolean action - comment fix for mocks. BUG=439328 TBR=phajdan.jr@chromium.org, brettw@chromium.org Review URL: https://codereview.chromium.org/757233004 Cr-Commit-Position: refs/heads/master@{#307030}
-
sungmann.cho authored
BUG=none Review URL: https://codereview.chromium.org/771253003 Cr-Commit-Position: refs/heads/master@{#307029}
-
mnissler authored
ProxyPolicyProvider and ForwardingPolicyProvider seemed to be similar-purpose judging by the name, but that's far from accurate. This change adds more documentation and renames ForwardingPolicyProvider to SchemaRegistryTrackingPolicyProvider in an attempt to clarify the situation for readers coming after me. BUG=None TEST=No functional changes. Review URL: https://codereview.chromium.org/775613004 Cr-Commit-Position: refs/heads/master@{#307028}
-
sdefresne authored
Remove ios::SupportsUserData shim in favor of directly using base::SupportsUserData since the shim didn't bring anything except friction. BUG=429756 Review URL: https://codereview.chromium.org/781643004 Cr-Commit-Position: refs/heads/master@{#307027}
-
siggi authored
Unfortunately these are not the droids we're looking for. BUG=388741 Review URL: https://codereview.chromium.org/783533002 Cr-Commit-Position: refs/heads/master@{#307026}
-
pastarmovj authored
BUG=439149 TEST=Happy thread sanitizer. Review URL: https://codereview.chromium.org/773393004 Cr-Commit-Position: refs/heads/master@{#307025}
-
mfomitchev authored
Revert of [Telemetry] Fix video_unittest so that it actually runs on bots. (patchset #6 id:100001 of https://codereview.chromium.org/756553003/) Reason for revert: Looks like this broke telemetry_unittests Build link: https://build.chromium.org/p/chromium.linux/builders/Linux%20Tests/builds/17356 Output: [284/694] telemetry.core.video_unittest.VideoTest.testFramesFromMp4 failed unexpectedly: Traceback (most recent call last): File "/mnt/data/b/build/slave/Linux_Tests/build/src/tools/telemetry/telemetry/decorators.py", line 84, in wrapper func(*args, **kwargs) File "/mnt/data/b/build/slave/Linux_Tests/build/src/tools/telemetry/telemetry/core/video_unittest.py", line 35, in testFramesFromMp4 for i, timestamp_bitmap in enumerate(video_obj._FramesFromMp4()): File "/mnt/data/b/build/slave/Linux_Tests/build/src/tools/telemetry/telemetry/core/video.py", line 158, in _FramesFromMp4 dimensions = GetDimensions(self._video_file_obj.name) File "/mnt/data/b/build/slave/Linux_Tests/build/src/tools/telemetry/telemetry/core/video.py", line 137, in GetDimensions output) AssertionError: Failed to determine video dimensions. output=avconv: error while loading shared libraries: libavdevice.so.53: cannot open shared object file: No such file or directory Original issue's description: > [Telemetry] Fix video_unittest so that it actually runs on bots. > > This also makes it explicitly clear that the avconv dependency is currently linux only. > > I had another CL out a while ago that fixes this, but that CL's blocked, so I'm separating this out. > > BUG=433943 > > Committed: https://crrev.com/eae4959498c328f8e3fa710b1d507c0d68225b18 > Cr-Commit-Position: refs/heads/master@{#306858} TBR=tonyg@chromium.org,slamm@chromium.org,mthiesse@chromium.org NOTREECHECKS=true NOTRY=true BUG=433943 Review URL: https://codereview.chromium.org/748873003 Cr-Commit-Position: refs/heads/master@{#307024}
-
sullivan authored
Looks like a typo from https://codereview.chromium.org/740633006 BUG=439353 Review URL: https://codereview.chromium.org/778143002 Cr-Commit-Position: refs/heads/master@{#307023}
-
davidyu authored
function normally. Other classes that depend on DeviceCloudPolicyStore to work normally include CloudPolicyManager, CloudPolicyService, and CloudPolicyInvalidator. PolicyUI, VersionInfoUpdater, SystemTrayDelegateChromeOS, and PolicyHeaderService also observe on DeviceCloudPolicyStore, but they don't really use the policy from the store and can work either way. BUG=chromium:353050 TEST=unit_tests Review URL: https://codereview.chromium.org/782483002 Cr-Commit-Position: refs/heads/master@{#307022}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/6c3c386..96e3f0f TBR=schenney@chromium.org,dominicc@chromium.org Review URL: https://codereview.chromium.org/755653007 Cr-Commit-Position: refs/heads/master@{#307021}
-
tfarina authored
Revert of Revert of Cleanup: Update the path to vector2d_f.h header. (patchset #1 id:1 of https://codereview.chromium.org/771283003/) Reason for revert: This didn't cause the issue. As noted in https://codereview.chromium.org/781863004/#msg8 Original issue's description: > Revert of Cleanup: Update the path to vector2d_f.h header. (patchset #1 id:1 of https://codereview.chromium.org/781863004/) > > Reason for revert: > Breaks Win8 GN and Win8 GN(dbg) builders > > Original issue's description: > > Cleanup: Update the path to vector2d_f.h header. > > > > The geometry headers were moved from /ui/gfx/ to ui/gfx/geometry, so > > we are updating the include paths to fix this. > > > > BUG=395370 > > TEST=gfx_unittests > > TBR=sky@chromium.org,danakj@chromium.org > > > > Committed: https://crrev.com/b486216287a3e1f30e81f70444f889d321b7819a > > Cr-Commit-Position: refs/heads/master@{#306960} > > TBR=danakj@chromium.org,sky@chromium.org,tfarina@chromium.org > NOTREECHECKS=true > NOTRY=true > BUG=395370 > > Committed: https://crrev.com/0dffffd306e8e21bd027b26e947ec8b5ffcdfa51 > Cr-Commit-Position: refs/heads/master@{#306962} TBR=danakj@chromium.org,sky@chromium.org,samli@chromium.org NOTREECHECKS=true NOTRY=true BUG=395370 Review URL: https://codereview.chromium.org/762063006 Cr-Commit-Position: refs/heads/master@{#307020}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#307019}
-
johnme authored
Patch https://crrev.com/763833004 forked the register methods into very similar FromDocument and FromWorker methods. This patch removes that code duplication, which is currently a small win, but will become a bigger win over time as my next few patches introduce additional thread hops into the registration flow (to read and write registration IDs to/from storage). Depends on https://codereview.chromium.org/770423003 BUG=none Review URL: https://codereview.chromium.org/769273004 Cr-Commit-Position: refs/heads/master@{#307018}
-
ygorshenin authored
Also, removed SignAndStore() functionality from DeviceSettingsService. BUG=433840 TEST=unit_tests:DeviceSettingsService* Review URL: https://codereview.chromium.org/769703003 Cr-Commit-Position: refs/heads/master@{#307017}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/fad9dc3..6c3c386 TBR=schenney@chromium.org,dominicc@chromium.org Review URL: https://codereview.chromium.org/772893006 Cr-Commit-Position: refs/heads/master@{#307016}
-
melandory authored
ManagePasswordsBubbleView::never_save_password_ belong to ManagePasswordsBubbleModel R=mkwst@chromium.org BUG=438841 Review URL: https://codereview.chromium.org/775843005 Cr-Commit-Position: refs/heads/master@{#307015}
-
tfarina authored
It appears to be unused by Chrome and Blink. Lets just delete this altogether. BUG=329094 R=thakis@chromium.org Review URL: https://codereview.chromium.org/776563004 Cr-Commit-Position: refs/heads/master@{#307014}
-
https://codereview.chromium.org/760503002glider authored
Turn on stack use-after-return detection in non-official ASan builds. The problems with Blink tests timeouts have been solved in https://codereview.chromium.org/774933008 BUG=390117,438499 TBR=scherkus@chromium.org,earthdok@chromium.org,thakis@chromium.org Review URL: https://codereview.chromium.org/780893002 Cr-Commit-Position: refs/heads/master@{#307013}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/c63077c..fad9dc3 TBR=schenney@chromium.org,dominicc@chromium.org Review URL: https://codereview.chromium.org/775963004 Cr-Commit-Position: refs/heads/master@{#307012}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/5081120..c63077c TBR=schenney@chromium.org,dominicc@chromium.org Review URL: https://codereview.chromium.org/751793003 Cr-Commit-Position: refs/heads/master@{#307011}
-
plundblad authored
This fixes two issues with editing text using braille in contenteditable elements: - Non-breaking spaces in the element confused the detection of changes that weren't caused by the braille IME causing grade 2 braille input to be interrupted inside words. is now normalized to normal spaces for the purpose of braille output in this case. - Blank lines weren't shown because of a special case handling for tts output. Now braille is included in that special case. BUG=392854 Review URL: https://codereview.chromium.org/767683003 Cr-Commit-Position: refs/heads/master@{#307010}
-