- 16 Jan, 2014 40 commits
-
-
dnicoara@chromium.org authored
Given we now use the OzonePlatform to initialize SFO and we already have a test implementation(the file backend), the Stub implementation isn't required. After the removal the unittests will default to using the file backend. This change also fixes the recent brakage of aura_unittests since the Stub SFO returns 0 (kNullAcceleratedWidget) for a widget, which triggers a DCHECK failure in WindowTreeHost::DestroyCompositor. BUG= Review URL: https://codereview.chromium.org/131493005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245377 0039d316-1c4b-4281-b951-d872f2087c98
-
qinmin@chromium.org authored
In the old contentVideoView.java, we create the MediaController first in the openVideo() call. Then we call updateMediaMetadata() to enable to media controller and set the metadata. With ContentVideoViewLegacy.java, the ordering between updateMediaMetadata() and mediaController creation is reversed. That causes the controller to become disabled. This change posts a task when RequestMediaMetadata() is called to solve the above issue, and to avoid the reentrance issue. BUG=334635 Review URL: https://codereview.chromium.org/141243002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245376 0039d316-1c4b-4281-b951-d872f2087c98
-
junov@chromium.org authored
Adding skia null gl context sources to chromium's build of skia so it can be used in blink unit tests BUG=329949 Review URL: https://codereview.chromium.org/140743004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245375 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
Move extension-related pref name constants used by the ExtensionPrefs class from chrome/common/pref_names.h to extensions/browser/pref_names.h. Remove "Extension" from the beginning of the constant identifiers and "Pref" from the end since it seemed redundant now that they're in the extensions::pref_names namespace. Also delete prefs::kExtensionBlacklistUpdateVersion since it hasn't been used in about a year. BUG=313284 TBR=isherman@chromium.org,sky@chromium.org Review URL: https://codereview.chromium.org/140343002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245374 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This also fixes the goma toolchain definition. My conditions syntax was missing a set of []. R=scottmg@chromium.org BUG= Review URL: https://codereview.chromium.org/140763006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245371 0039d316-1c4b-4281-b951-d872f2087c98
-
lambroslambrou@chromium.org authored
Official builds will produce ChromeRemoteDesktop.apk instead of Chromoting.apk R=kerz@chromium.org, sergeyu@chromium.org Review URL: https://codereview.chromium.org/141213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245370 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245369 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
libwebm will be used by chromoting client to generate WebM stream for MediaSource API. BUG=321825 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=245139 Review URL: https://codereview.chromium.org/134643003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245368 0039d316-1c4b-4281-b951-d872f2087c98
-
acleung@chromium.org authored
BUG=334424 Review URL: https://codereview.chromium.org/138673005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245367 0039d316-1c4b-4281-b951-d872f2087c98
-
enne@chromium.org authored
It seems that this is firing in practice, so don't DCHECK it. Instead, just return no resource at all since that mask layer can't draw. This will behave identically to the case where there is no mask at all. BUG=165723 Review URL: https://codereview.chromium.org/136143004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245365 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
Lua builds using the SDK's common.mk build files, but passes NACL_ARCH=pnacl when building for pnacl. nacl_config.py is now (as of r243629) used in common.mk, but it would error out if toolchain=pnacl, and arch was not unspecified. This change allows toolchain=pnacl, arch=pnacl. BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/137853013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245364 0039d316-1c4b-4281-b951-d872f2087c98
-
nduca@chromium.org authored
Event names can have . characters in them. But, the telemetry results system does not allow trace names to contain . characters for various reasons. R=epenner TBR=ernstm CC=achuith Review URL: https://codereview.chromium.org/140653003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245363 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
* Modified chrome_sidenav.json to point to the correct locations. * Added new template Doxygen config files for PPAPI C/C++ to the native_client_sdk directory. * Copied doxy_cleanup.py from ppapi/c/documentation, and moved it to native_client_sdk, with some cleanup * Modified doxygen header/footer to generate for chromesite * Added generate_docs.py script. This automates nearly all of the doxygen documentation generation: gets the current stable/beta/dev branches, downloads ppapi via SVN, runs doxygen, runs doxy_cleanup, and generates ReST files for reference indexes. No tryjobs because this is a documentation-only change. BUG=none R=awatson@chromium.org, sbc@chromium.org Review URL: https://codereview.chromium.org/136033007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245362 0039d316-1c4b-4281-b951-d872f2087c98
-
mark@chromium.org authored
The big change in this version is that an installation attempt initiated by the application can show up as ondemand on the server. This will allow us to provide throttled Mac downloads (such as a "5% push") with correct behavior. BUG=35495 R=thakis@chromium.org Review URL: https://codereview.chromium.org/141193002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245361 0039d316-1c4b-4281-b951-d872f2087c98
-
blundell@chromium.org authored
This CL eliminates //chrome- and //content-level dependencies from UbertokenFetcher and moves it to //google_apis/gaia. Notable changes: - Change UbertokenFetcher to take in the OAuth2TokenService and URLRequestContextGetter to use rather than the Profile. - Add a FakeOAuth2TokenService to enable moving the UbertokenFetcher unittest away from using FakeProfileOAuth2TokenService. BUG=330292 TBR=thakis Review URL: https://codereview.chromium.org/136723009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245359 0039d316-1c4b-4281-b951-d872f2087c98
-
shadi@chromium.org authored
Better handling of errors and adding required command line args for gesture enabled devices. BUG=330910, 329691 Review URL: https://codereview.chromium.org/131123008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245358 0039d316-1c4b-4281-b951-d872f2087c98
-
simonhong@chromium.org authored
* Add & update description of some member functions and variables. * Remove unused variable - layer_updated_externally_. * Remove redundant function calls - SetXXXImmediately(). - Immediate setting is done by default animator. R=danakj@chromium.org BUG=NONE TEST=compositor_unittests Review URL: https://codereview.chromium.org/140443002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245357 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245356 0039d316-1c4b-4281-b951-d872f2087c98
-
mallinath@chromium.org authored
R=sergeyu@chromium.org, wjia@chromium.org TBR=phoglund@chromium.org Review URL: https://codereview.chromium.org/134633004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245355 0039d316-1c4b-4281-b951-d872f2087c98
-
enne@chromium.org authored
This is the final caller that doesn't fall back or is Aura-only, and so Aura's snapshot can switch over to only being asynchronous. BUG=332167 Review URL: https://codereview.chromium.org/127103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245354 0039d316-1c4b-4281-b951-d872f2087c98
-
andrewhayden@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/131463006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245353 0039d316-1c4b-4281-b951-d872f2087c98
-
ccameron@chromium.org authored
Move the bulk of the files in content/browser/aura to content/browser/compositor, since they're not aura-specific. Build all of those files in the Mac build, and add ui/compositor to the dependencies of the Mac build. These files will soon only be excluded from the Android build. BUG=314190 > Originally submitted: > https://codereview.chromium.org/137893007 > Then reverted: > https://codereview.chromium.org/137853019 (bug 335083) This submission has the failing test disabled. TBR=piman,danakj Review URL: https://codereview.chromium.org/140753005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245352 0039d316-1c4b-4281-b951-d872f2087c98
-
blundell@chromium.org authored
This change enables this code to be built on iOS and facilitates the eventual componentization of //chrome-browser/sync. As with other Autofill unit tests, componentization of the unit test will follow. Review URL: https://codereview.chromium.org/129463002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245351 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245350 0039d316-1c4b-4281-b951-d872f2087c98
-
sivachandra@chromium.org authored
BUG=333087 TBR=sky Review URL: https://codereview.chromium.org/140663004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245349 0039d316-1c4b-4281-b951-d872f2087c98
-
zork@chromium.org authored
BUG=285364 Review URL: https://codereview.chromium.org/133273017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245348 0039d316-1c4b-4281-b951-d872f2087c98
-
anjalibh@google.com authored
HLS spec recommends a single access unit(AU) in a packetized elementary stream(PES) so that each access unit can be assigned a unique PTS and DTS. The change makes es_parser_h264 return an error if the AU cannot be assigned a PTS and DTS. BUG=254214 Review URL: https://codereview.chromium.org/136703005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245347 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
The 1st patch was reverted because it appears on all platforms accidentally. This is on by default only in ChromeOS. BUG=333914 TBR=xiyuan@chromium.org TEST=manually Review URL: https://codereview.chromium.org/135843004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245345 0039d316-1c4b-4281-b951-d872f2087c98
-
avallee@chromium.org authored
Official 32 bit builds seem to generate x86 fpu instructions while normal development settings and Chromium settings generate SSE instructions. GCC has a loss of precision bug (gcc.gnu.org/PR323) that results in a different floating point value in some cases. This bug can be worked around by storing the intermediate value in a variable. BUG=334475 Review URL: https://codereview.chromium.org/135643006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245343 0039d316-1c4b-4281-b951-d872f2087c98
-
ygorshenin@chromium.org authored
Added volume adjust sound behind the flag. Partially based on https://codereview.chromium.org/24618003/. BUG=225886 TEST=media_unittests:AudioStreamHandler* Review URL: https://codereview.chromium.org/115693004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245342 0039d316-1c4b-4281-b951-d872f2087c98
-
pvalenzuela@chromium.org authored
> Basic implementation of the Sync C++ fake server > > This CL provides just enough functionality so that > PrototypeFakeServerTest will pass. > > BUG=323265 > > Review URL: https://codereview.chromium.org/115243007 TBR=pvalenzuela@chromium.org Review URL: https://codereview.chromium.org/130503007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245341 0039d316-1c4b-4281-b951-d872f2087c98
-
bshe@chromium.org authored
This CL did the following things: 1. changes targeting opacity from 0 to 0.2 during hide animation 2. fix "regain focus before hide animation finish, VK doesn't show up" issue BUG=333284 Review URL: https://codereview.chromium.org/134133003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245340 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
(More changes to come -- in particular to reduce exports from mojo_system_impl -- but one thing at a time....) R=sky@chromium.org Review URL: https://codereview.chromium.org/139823003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245339 0039d316-1c4b-4281-b951-d872f2087c98
-
mlamouri@chromium.org authored
BUG=325142 Review URL: https://codereview.chromium.org/100623008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245338 0039d316-1c4b-4281-b951-d872f2087c98
-
ttuttle@chromium.org authored
Chrome's internal DNS resolver checks whether the host currently has global IPv6 connectivity by creating a socket connected to Google Public DNS' IPv6 address. These show up in the NetLog as UDP_SOCKET objects with a source dependency of the HOST_RESOLVER_IMPL_REQUEST. This change adds an explicit IPV6_REACHABILITY_CHECK source type that will show up instead, to clarify the purpose of the UDP sockets. (Note that no packets are actually sent as a result of the checks; UDP doesn't need to send any packets to connect, and the HostResolverImpl doesn't send any data over the socket explicitly.) BUG=331746 Review URL: https://codereview.chromium.org/141023002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245336 0039d316-1c4b-4281-b951-d872f2087c98
-
slamm@chromium.org authored
BUG=331607 Review URL: https://codereview.chromium.org/138643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245333 0039d316-1c4b-4281-b951-d872f2087c98
-
bcwhite@chromium.org authored
BUG=333869 Review URL: https://codereview.chromium.org/134333008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245332 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245331 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
This pulls in the following Native Client changes: r12612: (dyen) Added armv7l to list of known architectures. r12613: (jvoung) Filter out -fasynchronous-unwind-tables in callingconv test, too. r12614: (dyen) Modifies platform_tools.py to be compatible with python 2.6 r12616: (jfb) Update TOOL_REVISIONS for PNaCl r12601->r12611 r12617: (mcgrathr) Update tools_rev to r12615 r12619: (dschuff) Factor toolchain_build_pnacl.py for canadian cross BUG=none TEST=browser_tests and nacl_integration Review URL: https://codereview.chromium.org/140653002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245329 0039d316-1c4b-4281-b951-d872f2087c98
-
plundblad@chromium.org authored
> Set the svn:ignore property on chrome/third_party/chromevox. > > BUG=330461 > > git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245328 0039d316-1c4b-4281-b951-d872f2087c98
-