- 28 May, 2014 4 commits
-
-
tmdiep@chromium.org authored
Replace "launch" with "try" for launching ephemeral apps via search results in the app launcher. BUG=377353 Review URL: https://codereview.chromium.org/300083003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273083 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
Mojo: Move message pipe types/constants/functions from mojo/public/c/system/core.h to .../message_pipe.h. R=sky@chromium.org Review URL: https://codereview.chromium.org/298273005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273082 0039d316-1c4b-4281-b951-d872f2087c98
-
mohsen@chromium.org authored
When width or height of a widget is changed to a value less than 64 pixels, it is rounded up to 64 pixels (see crbug.com/286609). This might cause the actual HWND size remain the same while changing size of the widget. In this case, we need to force message handler to update window region since we are not receiving resize messages form the OS. BUG=376329 Review URL: https://codereview.chromium.org/300163002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273081 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
Also adds ui/native_theme, third_party/npapi, and some required mojo stuff to make it build. BUG= R=scottmg@chromium.org Review URL: https://codereview.chromium.org/299113002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273079 0039d316-1c4b-4281-b951-d872f2087c98
-
- 27 May, 2014 36 commits
-
-
mlamouri@chromium.org authored
This call the WebView API to notify the pages that the accept languages has changed and setup the test runner to allow Blink to change the accept languages for test purposes. Depends on https://codereview.chromium.org/284793003/ BUG=365123 Review URL: https://codereview.chromium.org/280953002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273076 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
This change moves include_next outside of the include guard. On PNaCl, including <stdlib.h> will include usr/include/stdlib.h. Naclports copies this file to toolchain/linux_pnacl/usr/local/include/stdlib.h, which will be included next. Since it uses the same include guard, the real stdlib.h won't be included. This change fixes the linux SDK builder: voronoi.cc:48:37: error: use of undeclared identifier 'rand_r' return static_cast<unsigned char>(rand_r(&g_rand_state) & 255); ^ BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/293403010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273075 0039d316-1c4b-4281-b951-d872f2087c98
-
rvargas@chromium.org authored
StatsHistograms is the only "external" subclass of base::Histogram and as such it often requires extra considerations when modifying the base class. On the other hand, almost the same data can be gathered by using a regular log histogram with a specific range. This CL does that, generating a 75 bucket histogram to map the 27 buckets from the original data. Most of the buckets will be empty, and a couple of buckets will be merged on the new histogram, but the compromise looks good enough. BUG=377936 Review URL: https://codereview.chromium.org/295913014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273074 0039d316-1c4b-4281-b951-d872f2087c98
-
perkj@chromium.org authored
Remove the use of MediaStreamClient and move creation of MediaStream specific renderers to MediaStreamRendererFactory. This cleans up RenderFrameImpl as well as moving renderer code out of MediaStreamImpl. MediaStreamImpl should in the end only implement methods necessary for blink::WebUserMediaClient and be renamed to UserMediaClientImpl. BUG= 323223 Review URL: https://codereview.chromium.org/294043015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273073 0039d316-1c4b-4281-b951-d872f2087c98
-
jiangj@opera.com authored
The only client of InMemoryURLIndex::HistoryItemsForTerms is //chrome/browser/autocomplete/history_quick_provider.cc which has access to the constant. So pass the constant to the history component instead of having the dependency. BUG=374730 TBR=thakis // For OWNERS at chrome/browser/autocomplete/history_quick_provider.cc Review URL: https://codereview.chromium.org/296743009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273072 0039d316-1c4b-4281-b951-d872f2087c98
-
eroman@chromium.org authored
(Does not yet address AES-KW, which is currently only exposed for wrapping/unwrapping of 'raw' format). BUG=373555,245025 Review URL: https://codereview.chromium.org/299843014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273071 0039d316-1c4b-4281-b951-d872f2087c98
-
rogerta@chromium.org authored
BUG=376648 Review URL: https://codereview.chromium.org/297853006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273070 0039d316-1c4b-4281-b951-d872f2087c98
-
gbillock@chromium.org authored
BUG=332115,342562 Review URL: https://codereview.chromium.org/265773002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273068 0039d316-1c4b-4281-b951-d872f2087c98
-
aruslan@chromium.org authored
Once in trunk this needs to be picked up to M36 beta branch. Once picked up by the branch, this needs to be reverted on trunk. BUG=378025 NOTRY=True Review URL: https://codereview.chromium.org/294393008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273067 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
- Add metrics for ad injector install location. - Add metrics for injected ad type. - Ignore added elements that have a src of the current page. BUG=357204 Review URL: https://codereview.chromium.org/292313006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273066 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@chromium.org authored
R=rch@chromium.org BUG= Review URL: https://codereview.chromium.org/299313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273065 0039d316-1c4b-4281-b951-d872f2087c98
-
miletus@chromium.org authored
BUG=376806 TEST=bring up/dismiss the virtual keyboard a few times and then run ps aux to make sure there is no defunct chrome process. Review URL: https://codereview.chromium.org/297173003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273064 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
This will facilitate development of the out-of-process UI compositor for MacViews by providing a views example that uses UI layers and composited animations. It also gives app list developers a target to ease development of upcoming changes, without compiling all of Chromium and manually installing two dozen apps from the webstore. BUG=365977 Review URL: https://codereview.chromium.org/281383012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273063 0039d316-1c4b-4281-b951-d872f2087c98
-
sievers@chromium.org authored
Add animation callback that happens before Composite. SetNeedsAnimate() schedules animations with a deadline. New frames arriving from the renderer will still composite immediately, in which case they also take care of the animation update. Remove |should_composite_on_vsync_| logic that was used for tab stack animations and also use the same deadline logic instead. BUG=373075 NOTRY=True Review URL: https://codereview.chromium.org/285373008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273062 0039d316-1c4b-4281-b951-d872f2087c98
-
prasadv@chromium.org authored
BUG=377948 NOTRY=true Review URL: https://codereview.chromium.org/300623006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273061 0039d316-1c4b-4281-b951-d872f2087c98
-
grt@chromium.org authored
BUG=none R=mattm@chromium.org Review URL: https://codereview.chromium.org/296823010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273060 0039d316-1c4b-4281-b951-d872f2087c98
-
maniscalco@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/302633009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273059 0039d316-1c4b-4281-b951-d872f2087c98
-
matthewyuan@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273058 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=370433 TEST=None R=sky@chromium.org Review URL: https://codereview.chromium.org/299403005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273057 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
The latter is always NULL since the certificate chain hasn't been verified yet. BUG=375821 TEST=Visit https://www.imperialviolet.org/2014/03/03/triplehandshake.html on Android; image still doesn't load. TEST=Visit https://scripts.mit.edu:444/__scripts/certerror. Tap 'Cancel' on the certificate prompt. Hit 'More' on the error page. Should show ERR_SSL_PROTOCOL_ERROR, not ERR_SSL_SERVER_CERT_CHANGED. Review URL: https://codereview.chromium.org/300103011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273055 0039d316-1c4b-4281-b951-d872f2087c98
-
rogerta@chromium.org authored
- use embedded view instead of servicelogin - don't show settings page when reauth'ing primary account - use new UMA action for logging reauth BUG=311235 Review URL: https://codereview.chromium.org/300523003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273054 0039d316-1c4b-4281-b951-d872f2087c98
-
finnur@chromium.org authored
BUG=350921 Review URL: https://codereview.chromium.org/297683004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273053 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/287293004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273052 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Review URL: https://codereview.chromium.org/297193002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273051 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Review URL: https://codereview.chromium.org/295383003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273049 0039d316-1c4b-4281-b951-d872f2087c98
-
ericu@chromium.org authored
this is the biggest chunk I can pull out vaguely cleanly. It does contain a couple of fake calls to keep the compiler happy. This CL also makes SetUpMetadata a member in order to ease testing in a later CL. This depends on https://codereview.chromium.org/261843004/. BUG=108012 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=270016 Review URL: https://codereview.chromium.org/266333002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273048 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
A workaround until ImageGrid switches to cc::NinePatchLayer. BUG=376519 Review URL: https://codereview.chromium.org/302513002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273046 0039d316-1c4b-4281-b951-d872f2087c98
-
jbroman@chromium.org authored
This is a no-op since over a month ago: https://codereview.chromium.org/206463009/ So it's probably safe to remove the Chromium code which plumbs this preference around before Blink drops it on the floor. After this lands, WebSettings::setFixedPositionCreatesStackingContext can be removed entirely. BUG=354688 Review URL: https://codereview.chromium.org/289973008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273045 0039d316-1c4b-4281-b951-d872f2087c98
-
xians@chromium.org authored
Change kEnableAudioTrackProcessing to a disable flag and remove finch code for AudioTrackProcessing. The plan is to enable audio processing in getUserMedia as default for M37, and keep a kDisableAudioTrackProcessing flag to be able to fall back to the old path. BUG=365672 TEST=bots Review URL: https://codereview.chromium.org/293023003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273044 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
R=sky@chromium.org Review URL: https://codereview.chromium.org/293383007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273042 0039d316-1c4b-4281-b951-d872f2087c98
-
reveman@chromium.org authored
This introduces a new mechanism for determining when we're ready to activate the pending tree. The tile priority is still used to determine when it's worth waking up the compositor thread and evaluating if we can activate. However, the actual check that determines if we're ready to activate doesn't rely on the state of scheduled raster tasks but is a synchronous call on each layer. The result is a pending tree activation mechanism that is much easier to debug and validate for correctness, while still providing the performance benefits of the old mechanism by taking the "required to activate" field of the tile priority into account when scheduling tasks. BUG=375206 TEST=cc_unittests --gtest_filter=PictureLayerImplTest.AllTilesRequiredForActivationAreReadyToDraw Review URL: https://codereview.chromium.org/287643004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273040 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273039 0039d316-1c4b-4281-b951-d872f2087c98
-
epoger@google.com authored
control (whitespace change) is at https://codereview.chromium.org/300853004 NOTRY=True Review URL: https://codereview.chromium.org/301723002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273038 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
BUG=377386 TEST=See bug, comment #2. Review URL: https://codereview.chromium.org/300063009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273037 0039d316-1c4b-4281-b951-d872f2087c98
-
jungjik.lee@samsung.com authored
if the target is not in english, adb_profiler_chrome can not know when the profiler is started and finished. because adb_profiler_chrome uses only english regex for parsing the logs. So this is a patch for showing the logs in english, however it still shows toasts by following the target's locale. BUG=373505 Review URL: https://codereview.chromium.org/282813002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273035 0039d316-1c4b-4281-b951-d872f2087c98
-
teravest@chromium.org authored
This method isn't necessary any longer. This is a small change to clean up more of the OpenManifestEntry logic and move it out of the trusted plugin. BUG=239656 R=dmichael@chromium.org Review URL: https://codereview.chromium.org/296403010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273034 0039d316-1c4b-4281-b951-d872f2087c98
-