- 05 May, 2014 40 commits
-
-
cmumford@chromium.org authored
Changes that affect chrome: - Changed local variable type from int to size_t. This fixes compiler warning to unblock env_chromium_unittests change: https://codereview.chromium.org/213303002 BUG= Review URL: https://codereview.chromium.org/264773009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268299 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
Fix build error which occurs due to an incorrectly referenced member variable in the MetricsStateManager class. BUG=368413 R=asvitkine@chromium.org, miu@chromium.org, miu Review URL: https://codereview.chromium.org/266213004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268296 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
Caused build breakage because static initializer was added to ppb_nacl_private_impl.cc. Candidate (line 96): + const int32_t kPNaClManifestId = std::numeric_limits<int32_t>::max(); > Pepper: Move manifest logic to components/nacl. > > The goal of the trusted plugin refactor is to move as much code as possible out of ppapi/native_client/src/trusted/plugin. This change moves all the manifest parsing and lookup logic out of the trusted plugin at once; it's hard to move piecemeal. > > BUG=353592 > R=bbudge@chromium.org, mallinath@chromium.org > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=268250 > > Review URL: https://codereview.chromium.org/264943003 TBR=teravest@chromium.org Review URL: https://codereview.chromium.org/265393004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268295 0039d316-1c4b-4281-b951-d872f2087c98
-
dschuff@chromium.org authored
These names get expanded twice into the pathnames of some built files which in some cases cause them to exceed Windows' MAX_PATH limit and kill the build. This reduces those path lengths by ~20 chars. e.g. ../../../../../out/Release_x64/obj/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim_aot.gen/pnacl_newlib_x86_32-nonsfi/pnacl_irt_shim_aot/irt_shim_ppapi.o.d becomes ../../../../../out/Release_x64/obj/ppapi/native_client/src/untrusted/pnacl_irt_shim/shim_aot.gen/pnacl_newlib_x86_32-nonsfi/shim_aot/irt_shim_ppapi.o.d R=binji@chromium.org, dyen@chromium.org, mseaborn@chromium.org, teravest@chromium.org BUG=https://code.google.com/p/nativeclient/issues/detail?id=3846 Review URL: https://codereview.chromium.org/263083012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268292 0039d316-1c4b-4281-b951-d872f2087c98
-
mfomitchev@chromium.org authored
The ash/ part of the implementation of the Touch Exploration Mode. This is dependent on Part I: https://codereview.chromium.org/262483003/ BUG=368828 Review URL: https://codereview.chromium.org/261863002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268291 0039d316-1c4b-4281-b951-d872f2087c98
-
boliu@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/266723016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268290 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268289 0039d316-1c4b-4281-b951-d872f2087c98
-
eseidel@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=173313:173328&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/269083002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268287 0039d316-1c4b-4281-b951-d872f2087c98
-
jgraettinger@chromium.org authored
Also move hpack fuzz targets to build on mac & win, and tweak fuzzer tools to build on win. Re-applied patch from issue 266003005. TESTED=Manually built on windows. BUG=353237 Review URL: https://codereview.chromium.org/268943002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268286 0039d316-1c4b-4281-b951-d872f2087c98
-
sdefresne@chromium.org authored
Chrome on iOS always need to have a BookmarkUndoService installed as an observer to all the BookmarkModel (there is no command-line switch on iOS). BUG=364044 Review URL: https://codereview.chromium.org/265743004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268284 0039d316-1c4b-4281-b951-d872f2087c98
-
sdefresne@chromium.org authored
Chrome on iOS does not support the clipboard, so install overrides that disable the clipboard on iOS and disable the corresponding unit tests. BUG=228147 Review URL: https://codereview.chromium.org/261013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268283 0039d316-1c4b-4281-b951-d872f2087c98
-
sdefresne@chromium.org authored
Those files are used by a lot of tests and do not depends on chrome/ or content/ so they can be moved to the component in a new library that will be used by the test (eventually components_unittests). BUG=367839 Review URL: https://codereview.chromium.org/268673004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268282 0039d316-1c4b-4281-b951-d872f2087c98
-
rsadam@chromium.org authored
BUG=364468 Review URL: https://codereview.chromium.org/261013008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268281 0039d316-1c4b-4281-b951-d872f2087c98
-
teravest@chromium.org authored
The goal of the trusted plugin refactor is to move as much code as possible out of ppapi/native_client/src/trusted/plugin. This change moves all the manifest parsing and lookup logic out of the trusted plugin at once; it's hard to move piecemeal. BUG=353592 R=bbudge@chromium.org, mallinath@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=268250 Review URL: https://codereview.chromium.org/264943003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268280 0039d316-1c4b-4281-b951-d872f2087c98
-
rsesek@chromium.org authored
BUG=367863 Review URL: https://codereview.chromium.org/257193002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268279 0039d316-1c4b-4281-b951-d872f2087c98
-
bartfab@chromium.org authored
In version 2 of the API, initialize() returns the list of supported key types and add() expects one of these key types to be specified. At the moment, the only supported key type is KEY_TYPE_PASSWORD_PLAIN but this can now be expanded without changing the API. BUG=367847 TEST=Extended browser test Review URL: https://codereview.chromium.org/258123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268278 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@chromium.org authored
This call is no longer used after WebUI NTP was removed. BUG=284770 Review URL: https://codereview.chromium.org/263803006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268277 0039d316-1c4b-4281-b951-d872f2087c98
-
haitaol@chromium.org authored
all their data(profile), too. If checked, user will be prompted again to confirm profile deletion. BUG=363272 NOTRY=true Review URL: https://codereview.chromium.org/235943011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268276 0039d316-1c4b-4281-b951-d872f2087c98
-
bolian@chromium.org authored
BUG=355604 Review URL: https://codereview.chromium.org/257663002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268275 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268271 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
Caused compile errors on Android GN bot. > Add flac into root BUILD.gn > > All hail GN. oRZ > > BUG=none > > Review URL: https://codereview.chromium.org/263503003 TBR=ajwong@chromium.org Review URL: https://codereview.chromium.org/264173002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268270 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
This reverts commit da22c3c9. TBR=japhet@chromium.org BUG=364781 Review URL: https://codereview.chromium.org/268783004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268268 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
The change added a static initializer, breaking the build: ppb_nacl_private_impl.cc nacl::(anonymous namespace)::kPNaClManifestId > Pepper: Move manifest logic to components/nacl. > > The goal of the trusted plugin refactor is to move as much code as possible out of ppapi/native_client/src/trusted/plugin. This change moves all the manifest parsing and lookup logic out of the trusted plugin at once; it's hard to move piecemeal. > > BUG=353592 > R=bbudge@chromium.org, mallinath@chromium.org > > Review URL: https://codereview.chromium.org/264943003 R=teravest@chromium.org TBR=teravest@chromium.org Review URL: https://codereview.chromium.org/264143002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268267 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268266 0039d316-1c4b-4281-b951-d872f2087c98
-
ajwong@chromium.org authored
All hail GN. oRZ BUG=none Review URL: https://codereview.chromium.org/263503003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268265 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
r268232 was erroneously blamed, so re-applying it. > Revert 268232 "Refactor MetricsStateManager class out of Metrics..." > > Failed 'sizes' check: chrome-si (static initializers) incremented. > > > Refactor MetricsStateManager class out of MetricsService. > > > > The new class is responsible for managing various MetricsService state prefs, > > such as client id, low entropy source and the UMA opt-in state, as well as the > > cloned install detector. > > > > Also, moves IsMetricsReportingEnabled() from chrome_browser_main.cc to > > the new class as well as changing a couple MetricsService browser tests > > to instead be unit tests of the new class. > > > > BUG=368413 > > > > Review URL: https://codereview.chromium.org/256143006 > > TBR=asvitkine@chromium.org > > Review URL: https://codereview.chromium.org/268223002 TBR=miu@chromium.org Review URL: https://codereview.chromium.org/270013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268264 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268263 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
This added static initializers, breaking the build. In src/angle/common/shadervars.cpp: const BlockMemberInfo BlockMemberInfo::defaultBlockInfo(-1, -1, -1, false); > Roll ANGLE. > > Contains latest es3proto changes. > > Review URL: https://codereview.chromium.org/260893008 TBR=geofflang@chromium.org Review URL: https://codereview.chromium.org/265373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268262 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
It still doesn't run though. R=ben@chromium.org Review URL: https://codereview.chromium.org/265053005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268261 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This function returns the outputs for a target that appeared previously in the same file. This is frequently needed for getting the files resulting from an action. The main operational change is that targets that are generated are stashed in a vector as we process a file and then dispatched once that file is finished, rather than being dispatched as-we-go. This way we can ask questions about the targets that appeared previously in the file. R=scottmg@chromium.org Review URL: https://codereview.chromium.org/269723006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268260 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
BUG=364781 R=jochen@chromium.org Review URL: https://codereview.chromium.org/252743007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268259 0039d316-1c4b-4281-b951-d872f2087c98
-
boliu@chromium.org authored
An invalidate could be lost in this case: * SetNeedsContinuousInvalidate starts out as true * Functor happens on render thread, and SetNeedsContinuousInvalidate goes false, but because we are on render thread, this is posted back to UI thread * Before the task runs on UI, compositor SetNeedsContinuousInvalidate to true again, since the value is already true, this is a no-op, but we should really be invalidating now * The posted task runs and SetNeedsContinuousInvalidate to false, and we just lost an invalidate Fix by updating the value with a lock and only post for the invalidate. This avoids the race causing early out in SetNeedsContinuousInvalidate. For internal b/13979752 BUG= Review URL: https://codereview.chromium.org/269913002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268258 0039d316-1c4b-4281-b951-d872f2087c98
-
jbauman@chromium.org authored
Use Xrender to do the color conversion to 8bpp. BUG=368425 TBR=piman@chromium.org Review URL: https://codereview.chromium.org/269073003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268257 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268256 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
> NaCl: Update revision in DEPS, r13115 -> r13137 > > This pulls in the following Native Client changes: > > r13117: (mseaborn) Add a Scons-to-Ninja converter for getting faster incremental rebuilds > r13118: (mseaborn) Scons: Remove unnecessary use of addRepository() for gtest > r13119: (sbc) Add latest filename interface to IRT and sel_ldr. > r13120: (jvoung) Remove some leftover bits of CloseManifestEntry and Log. > r13121: (jfb) PNaCl SIMD: add test for vector cast and conversion > r13122: (bradnelson) Reduce perf dashboard noise by excluding -dbg builders. > r13123: (dyen) Added arguments to NaCl scons to allow custom toolchain directories. > r13124: (mseaborn) scons_to_ninja: Fix Install() step to coexist with NaCl/SCons's version > r13125: (dschuff) Test pinned PNaCl toolchain and gold plugin on mac and win toolchain bots > r13126: (jfb) LLVM biased sandbox build: fix PNaCl driver script so it knows about more architectures > r13127: (dyen) Fix bionic package_version archives. > r13128: (dyen) Updated nacl_arm_bionic revision to r13127 > r13129: (dschuff) Switch PNaCl toolchain package info upload back to toolchain_build_pnacl > r13130: (dyen) Added a way to specify packages with missing archives in package_version. > r13131: (mseaborn) PNaCl: Remove some more references to PNaCl+glibc in naclsdk.py > r13132: (mseaborn) Non-SFI Mode: Add nonsfi_loader and plumbing to test it > r13133: (mseaborn) Fix checkdeps.py failure on src/nonsfi/ produced by r13132 > r13134: (noelallen) Fix double crtbegin.o, extra gcc build steps on skip > r13135: (dschuff) Update PNaCl pinned revision to 13129 and switch to toolchain_build_pnacl > r13136: (bradnelson) Add NACL_GOMA_THREADS in build_nexe.py to limit number of threads (for sergeyu) > r13137: (noelallen) Add scons to gn script > > BUG=none > TEST=browser_tests and nacl_integration > R=bradnelson@google.com > > Review URL: https://codereview.chromium.org/266163002 TBR=mseaborn@chromium.org Review URL: https://codereview.chromium.org/265163011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268255 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
BUG=none TEST=none R=jam@chromium.org Review URL: https://codereview.chromium.org/266723015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268253 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
R=sky@chromium.org http://crbug.com/365012 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=268218 Review URL: https://codereview.chromium.org/260863008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268252 0039d316-1c4b-4281-b951-d872f2087c98
-
scheib@chromium.org authored
Refactors the EventListener struct with implied semantics based on the value of member variable |process| to a class with an explicit accessor for IsLazy. Also simplifies future abstraction for when ServiceWorkerHost may be an alternative to a RenderProcessHost. BUG=369841 Review URL: https://codereview.chromium.org/261223002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268251 0039d316-1c4b-4281-b951-d872f2087c98
-
teravest@chromium.org authored
The goal of the trusted plugin refactor is to move as much code as possible out of ppapi/native_client/src/trusted/plugin. This change moves all the manifest parsing and lookup logic out of the trusted plugin at once; it's hard to move piecemeal. BUG=353592 R=bbudge@chromium.org, mallinath@chromium.org Review URL: https://codereview.chromium.org/264943003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268250 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268249 0039d316-1c4b-4281-b951-d872f2087c98
-