- 13 Aug, 2014 40 commits
-
-
dtrainor@chromium.org authored
- Add edge menu bg assets. NOTRY=true BUG=400549 R=aurimas@chromium.org Review URL: https://codereview.chromium.org/463203003 Cr-Commit-Position: refs/heads/master@{#289413} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289413 0039d316-1c4b-4281-b951-d872f2087c98
-
bartfab@chromium.org authored
With this CL, device policy invalidation keeps track of the highest invalidation version that has been handled (= policy has been reloaded for this version already) when one invalidation is destroyed and another created. BUG=358699 TEST=WIP Review URL: https://codereview.chromium.org/460573005 Cr-Commit-Position: refs/heads/master@{#289411} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289411 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
Cr-Commit-Position: refs/heads/master@{#289405} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289405 0039d316-1c4b-4281-b951-d872f2087c98
-
adamk@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=180117:180191&mode=html TBR=zerny@chromium.org,adamk@chromium.org BUG= Review URL: https://codereview.chromium.org/469003002 Cr-Commit-Position: refs/heads/master@{#289404} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289404 0039d316-1c4b-4281-b951-d872f2087c98
-
stuartmorgan@chromium.org authored
iOS 6 will no longer be supported. Replaces deprecated sizeWithFont: with sizeWithAttributes: (adding a ceilf since according to the internet, the former rounds up, and the latter does not) to fix compilation. BUG=402921 Review URL: https://codereview.chromium.org/463333002 Cr-Commit-Position: refs/heads/master@{#289403} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289403 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
Cr-Commit-Position: refs/heads/master@{#289397} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289397 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
This pulls in the following Native Client changes: r13600: (mseaborn) PNaCl: Fix SJLJ EH redirector functions to not get "nounwind" attributes r13601: (yyanagisawa) Re-enable use of goma on Windows. r13602: (dschuff) PNaCl driver: Add libgcc to mixed native/bitcode links r13603: (ncbray) build_nexe.py: support compiling generated code in GYP. r13604: (dschuff) Revert "Re-enable use of goma on Windows." r13605: (mcgrathr) Configure GDB with --enable-tui r13606: (dschuff) PNaCl: Update libc++ revision in pnacl/COMPONENT_REVISIONS r13607: (jvoung) Add Subzero to the pnacl/deps_update script and have binutils check 2.24. r13608: (jvoung) PNaCl: Update Subzero revision in pnacl/COMPONENT_REVISIONS r13609: (dschuff) Roll LLVM COMPONENT_REVISIONS back to 007f1fd0 r13610: (noelallen) Break up arch dependencies r13611: (jvoung) Make some of the "get" pthread function prototypes take const params. BUG=none TEST=browser_tests and nacl_integration CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_rel_precise32,linux_nacl_sdk_build Review URL: https://codereview.chromium.org/473473002 Cr-Commit-Position: refs/heads/master@{#289396} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289396 0039d316-1c4b-4281-b951-d872f2087c98
-
enne@chromium.org authored
This reverts commit r288866 because of crashes. Old patch: https://codereview.chromium.org/134623005/ NOTRY=true TBR=danakj@chromium.org,boliu@chromium.org,piman@chromium.org,ben@chromium.org BUG=402943,403400 Review URL: https://codereview.chromium.org/475483002 Cr-Commit-Position: refs/heads/master@{#289395} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289395 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
BUG=403544 TBR=michaeln@chromium.org Review URL: https://codereview.chromium.org/467373003 Cr-Commit-Position: refs/heads/master@{#289393} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289393 0039d316-1c4b-4281-b951-d872f2087c98
-
mfomitchev@chromium.org authored
Implements Split Screen mode and window cycling behavior. Resubmit of https://codereview.chromium.org/420603011/ TBR=oshima@chromium.org,mukai@chromium.org BUG=383421 Review URL: https://codereview.chromium.org/468133002 Cr-Commit-Position: refs/heads/master@{#289392} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289392 0039d316-1c4b-4281-b951-d872f2087c98
-
rch@chromium.org authored
BUG=391032 Review URL: https://codereview.chromium.org/452183002 Cr-Commit-Position: refs/heads/master@{#289389} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289389 0039d316-1c4b-4281-b951-d872f2087c98
-
tengs@chromium.org authored
BUG=397334 TEST=manual NOTRY=true Review URL: https://codereview.chromium.org/471623004 Cr-Commit-Position: refs/heads/master@{#289387} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289387 0039d316-1c4b-4281-b951-d872f2087c98
-
anton@chromium.org authored
The implementation of thread local storage on Android does not free slots in a fixed size datastructure with 256 slots. When a large number of tests run in a single process it is easy to exceed the limit. We don't have control over how many slots are burnt per test, so we just assume that one slot is burnt per test. We split the tests so only 256 run in a given process. BUG=354405 Review URL: https://codereview.chromium.org/453953003 Cr-Commit-Position: refs/heads/master@{#289386} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289386 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
BUG=403533 TBR=gpdavis.chromium@gmail.com Review URL: https://codereview.chromium.org/469813005 Cr-Commit-Position: refs/heads/master@{#289384} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289384 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
Cleanup: Forward declare MojoApplicationHost in render_process_host_impl.h, instead of including the header. R=sky@chromium.org Review URL: https://codereview.chromium.org/469803002 Cr-Commit-Position: refs/heads/master@{#289383} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289383 0039d316-1c4b-4281-b951-d872f2087c98
-
jww@chromium.org authored
(Re-commit of https://codereview.chromium.org/418133012/) Currently, if a user clicks 'proceed' through an SSL interstitial, their only way to revoke this decision is to restart their browser session. This commit provides an explicit button in the page info to revoke this decision if the user is using the remember certificate error decisions experiment. Since decisions are remembered across browser restarts for these users, it's important to provide them with a mechanism to revoke their decision later. BUG=262615 NOTRY=true TBR=tedchoc@chromium.org,rsesek@chromium.org,jam@chromium.org,pkasting@chromium.org Review URL: https://codereview.chromium.org/473643002 Cr-Commit-Position: refs/heads/master@{#289382} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289382 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
BUG=403528 TBR=enne@chromium.org Review URL: https://codereview.chromium.org/476443002 Cr-Commit-Position: refs/heads/master@{#289381} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289381 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
NOTRY=true TBR=hclam@chromium.org Review URL: https://codereview.chromium.org/467423002 Cr-Commit-Position: refs/heads/master@{#289380} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289380 0039d316-1c4b-4281-b951-d872f2087c98
-
dtrainor@chromium.org authored
Broke Android Tests (dbg) > Battery Status API: implementation for Linux. > > Implementation of the Battery Status API for the Linux platform. > Implementation uses DBus to talk to org.freedesktop.UPower service > to obtain battery information. > > BUG=122593 > TEST=http://jsbin.com/battery-status-test (manual) > TBR=brettw@chromium.org > NOTRY=true > > Review URL: https://codereview.chromium.org/436683002 TBR=timvolodine@chromium.org Review URL: https://codereview.chromium.org/472643002 Cr-Commit-Position: refs/heads/master@{#289379} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289379 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
BUG=none TBR=tbreisacher@chromium.org Review URL: https://codereview.chromium.org/472613003 Cr-Commit-Position: refs/heads/master@{#289376} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289376 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
Cr-Commit-Position: refs/heads/master@{#289375} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289375 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
2fd7b0b Disable exceptions for the pdfium targets, now that pdfium:28 is done. d4e406e Remove try/catch block d38a35e Treat null Parent as no Parent for dictionary objects 9fa56b7 Fix missing or broken include guard macros in pdfium headers. 87708e1 For a CPDF_Color object, when set a new pattern to it, disconnect its link with the old pattern fda0d42 When normalize coordinate, return instead of assert() when divide BUG=382988,402260,402437,pdfium:28,82385 TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/469603003 Cr-Commit-Position: refs/heads/master@{#289374} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289374 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
BUG=402903 R=yoz@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/462103003 Cr-Commit-Position: refs/heads/master@{#289373} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289373 0039d316-1c4b-4281-b951-d872f2087c98
-
timvolodine@chromium.org authored
Implementation of the Battery Status API for the Linux platform. Implementation uses DBus to talk to org.freedesktop.UPower service to obtain battery information. BUG=122593 TEST=http://jsbin.com/battery-status-test (manual) TBR=brettw@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/436683002 Cr-Commit-Position: refs/heads/master@{#289372} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289372 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
Cr-Commit-Position: refs/heads/master@{#289371} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289371 0039d316-1c4b-4281-b951-d872f2087c98
-
reillyg@chromium.org authored
This class stores criteria for selecting USB devices. A device can be matched by its vendor and product IDs, and the interfaces that it implements. BUG=346953 TBR=satorux@chromium.org Review URL: https://codereview.chromium.org/462753002 Cr-Commit-Position: refs/heads/master@{#289370} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289370 0039d316-1c4b-4281-b951-d872f2087c98
-
guohui@chromium.org authored
BUG=403018 R=oshima@chromium.org Review URL: https://codereview.chromium.org/475533002 Cr-Commit-Position: refs/heads/master@{#289369} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289369 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
BUG= R=piman@chromium.org Review URL: https://codereview.chromium.org/453163002 Cr-Commit-Position: refs/heads/master@{#289367} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289367 0039d316-1c4b-4281-b951-d872f2087c98
-
pshenoy@chromium.org authored
This fixes a bug in displaying blink changelog if the range contains git hash and displays better error message in case of ValueError from json.loads. BUG=None NOTRY=True Review URL: https://codereview.chromium.org/463243002 Cr-Commit-Position: refs/heads/master@{#289363} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289363 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
Also stop shadowing modules names like `file` as local variables and otherwise adhere to the Python style guide: https://google-styleguide.googlecode.com/svn/trunk/pyguide.html R=tbreisacher@chromium.org BUG=393873 TEST=pydoc checker.py processor.py Review URL: https://codereview.chromium.org/475493002 Cr-Commit-Position: refs/heads/master@{#289361} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289361 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This updates the includes in base but leaves a forwarding header for the rest of the project for now. R=yzshen@chromium.org Review URL: https://codereview.chromium.org/468253002 Cr-Commit-Position: refs/heads/master@{#289360} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289360 0039d316-1c4b-4281-b951-d872f2087c98
-
mmenke@chromium.org authored
NOTRY=true Review URL: https://codereview.chromium.org/458403002 Cr-Commit-Position: refs/heads/master@{#289358} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289358 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
> Revert 288954 "[Sync] Don't synchronously stop datatypes that en..." > > Reason for revert: see crbug.com/403098 > > > [Sync] Don't synchronously stop datatypes that encounter errors > > > > The datatype logic may be operating unders assumptions that break when > > the type is stopped from under it, possibly triggering crashes. > > > > BUG=402595,403098 > > > > Review URL: https://codereview.chromium.org/462863002 > > TBR=zea@chromium.org > > Review URL: https://codereview.chromium.org/467923002 TBR=oshima@chromium.org Review URL: https://codereview.chromium.org/471683002 Cr-Commit-Position: refs/heads/master@{#289357} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289357 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
> Revert 288557 "[Sync] Use OnSingleDataTypeUnrecoverableError for..." > > Reason for revert: see crbug.com/403098 > > > [Sync] Use OnSingleDataTypeUnrecoverableError for all errors > > > > This removes the disable callback from all datatype controllers as well > > as the DisableDataType method from the PSS, in favor of > > OnSingleDataTypeUnrecoverable error (which now accepts a SyncError). > > > > BUG=368834,403098 > > TBR=bauerb@chromium.org > > > > Review URL: https://codereview.chromium.org/436733002 > > TBR=zea@chromium.org > > Review URL: https://codereview.chromium.org/465113002 TBR=oshima@chromium.org Review URL: https://codereview.chromium.org/469073002 Cr-Commit-Position: refs/heads/master@{#289356} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289356 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
> Revert 288464 "[Sync] Cleanup datatype configuration error handl..." > > Reason for revert: see crbug.com/403098 > > > [Sync] Cleanup datatype configuration error handling. > > > > The FailedDataTypeHandler is now informed immediately of failures, including > > datatype errors, and is therefore authoritative source for all errors. As such, > > partial success is no longer tracked and the various ModelTypeSets for error > > types in configure results are removed. > > > > BUG=368834,403098 > > > > Review URL: https://codereview.chromium.org/420633002 > > TBR=zea@chromium.org > > Review URL: https://codereview.chromium.org/468643002 TBR=oshima@chromium.org Review URL: https://codereview.chromium.org/469803004 Cr-Commit-Position: refs/heads/master@{#289354} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289354 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
Speculatively reverting because the CL may be causing the find_bugs step on the Android builder to fail http://build.chromium.org/p/chromium.linux/builders/Android%20Builder%20%28dbg%29/builds/63828/steps/findbugs/logs/stdio TBR=jww NOTRY=TRUE Review URL: https://codereview.chromium.org/469003004 Cr-Commit-Position: refs/heads/master@{#289353} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289353 0039d316-1c4b-4281-b951-d872f2087c98
-
noms@chromium.org authored
The old resources had too much bottom padding, and the radius of the bottom corners was incorrect There is a small related code change that fixes the size of the button here: https://codereview.chromium.org/460233003/ Screenshots: https://drive.google.com/open?id=0B1B1Up4p2NRMd214MHJSbzlUcFk&authuser=1 BUG=395798 R=oshima@chromium.org Review URL: https://codereview.chromium.org/462043003 Cr-Commit-Position: refs/heads/master@{#289352} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289352 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
in r286141. TBR=miket@chromium.org Review URL: https://codereview.chromium.org/465273003 Cr-Commit-Position: refs/heads/master@{#289351} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289351 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
TBR=ben@chromium.org Review URL: https://codereview.chromium.org/469053002 Cr-Commit-Position: refs/heads/master@{#289350} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289350 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
. Change the text color. . Change the default background color. . Make the fonts normal. . Add a 1px border at the bottom. BUG=401569 R=mukai@chromium.org Review URL: https://codereview.chromium.org/471503003 Cr-Commit-Position: refs/heads/master@{#289348} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289348 0039d316-1c4b-4281-b951-d872f2087c98
-