- 21 Jan, 2011 7 commits
-
-
thestig@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/6296018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72054 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
instance with resources and has most callers retrieve the dispatcher according to the appropriate instance. This isn't hooked up to anything yet. This changes some PPB_Flash interface methods to use PP_Bool. The most challenging part of the change is in the plugin_var_tracker which now needs to track which dispatcher each var object came from, and remap var IDs since each renderer will be generating var IDs in its own space, which will likely overlap. A similar system will need to be done for resources which is not implemented yet. I added some null checks in audio_impl because audio_ can be NULL in some cases when using the trusted API. I discovered this when testing NaCl for this patch. Review URL: http://codereview.chromium.org/6282007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72053 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/6339007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72051 0039d316-1c4b-4281-b951-d872f2087c98
-
kerz@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72050 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
incorrectly clearing the selection. BUG=62872 TEST=none Review URL: http://codereview.chromium.org/6275009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72048 0039d316-1c4b-4281-b951-d872f2087c98
-
dimich@chromium.org authored
Review URL: http://codereview.chromium.org/6255007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72047 0039d316-1c4b-4281-b951-d872f2087c98
-
mbelshe@chromium.org authored
pidfile. SPDY frames were leaking when used with DataFrame and OutputList. HUP signal will now reopen the log file. Remote IP obtained for 'forward-ip-header' was incorrect. Added connection idle timeout. Fixed up pidfile handling. Flip server now creates and locks a pid file. Patch from Kevin Lindsay: kelindsay@gmail.com BUG=none TEST=self Review URL: http://codereview.chromium.org/6332010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72046 0039d316-1c4b-4281-b951-d872f2087c98
-
- 20 Jan, 2011 33 commits
-
-
nirnimesh@chromium.org authored
Review URL: http://codereview.chromium.org/6340008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72045 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@google.com authored
Move the TestSink for doing IPC tests from chrome/common into IPC and create a new IPC test_support project that references it. This is necessary because I want to make a test that uses the sink outside of chrome. TEST=this is a test BUG=none Review URL: http://codereview.chromium.org/6290008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72044 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
BUG=70138 TEST=none TBR=amit Review URL: http://codereview.chromium.org/6382005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72043 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72042 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72041 0039d316-1c4b-4281-b951-d872f2087c98
-
darin@chromium.org authored
R=tony Review URL: http://codereview.chromium.org/6279007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72039 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
BUG=none TEST=none TBR=brettw Review URL: http://codereview.chromium.org/6263008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72038 0039d316-1c4b-4281-b951-d872f2087c98
-
sanjeevr@chromium.org authored
Code to send diagnostic messages about cloud print proxy. Currently diagnostic messages are sent if the print system fails to initialize (this can happen on Windows if the XPS Framework is not installed on XP) as well when printer registration fails because we could not get the capabilities for the printer. BUG=None TEST=None Review URL: http://codereview.chromium.org/6245005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72037 0039d316-1c4b-4281-b951-d872f2087c98
-
rsesek@chromium.org authored
BUG=none TEST=everything works as before (note, about:ipc only works in Debug builds) R=jrg Review URL: http://codereview.chromium.org/6265015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72035 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=68307 TEST=Dr. Memory no longer complains. Review URL: http://codereview.chromium.org/5998010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72032 0039d316-1c4b-4281-b951-d872f2087c98
-
kerz@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72031 0039d316-1c4b-4281-b951-d872f2087c98
-
rsimha@chromium.org authored
The destructor of net::NetworkConfigWatcherMacThread ends up calling PlatformThread::Join(), an operation that needs to be done only from an IO thread. This currently causes a DCHECK to fire in base::ThreadRestrictions. The bug was discovered by running the sync integration tests on a mac trybot. The tests create Profile objects during setup, that indirectly call ~NetworkConfigWatcherMacThread() from their destructors. This patch allows IO operations in ~NetworkConfigWatcherMacThread() using a ScopedAllowIO. BUG=70190 TEST=sync_integration_tests Review URL: http://codereview.chromium.org/6353008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72030 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
the NPAPI redirect notification spec. We compare the URL received in the NewStream notification with the requested URL and if they differ we cancel the current request and inform Chrome that this was a redirect. The sideeffect would be that there would be two GET requests sent out. BUG=69419 TEST=none. Review URL: http://codereview.chromium.org/6381005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72029 0039d316-1c4b-4281-b951-d872f2087c98
-
csilv@chromium.org authored
BUG=none TEST=Verify clicks don't close sub-pages when an overlay is visible. Review URL: http://codereview.chromium.org/6375006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72028 0039d316-1c4b-4281-b951-d872f2087c98
-
ajwong@chromium.org authored
BUG=none TEST=compiled and viewed under linux. Review URL: http://codereview.chromium.org/6222004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72027 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
Long cookie contents will now wrap earlier than they need to. CSS really doesn't want to do what we want (wrap the text at the inherited width, or anything except a hardcoded width). So I set the width to be narrower (300 instead of 520) and also set the table's layout to fixed, so that even if 300 is too wide the whole table won't overflow. BUG=69447 TEST=LANGUAGE=fr_FR ./out/Release/chrome Review URL: http://codereview.chromium.org/6327013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72026 0039d316-1c4b-4281-b951-d872f2087c98
-
amarinichev@google.com authored
If the gpu process dies, CommandBufferProxy might be the first one to find out about it. When the context is being created, GpuChannelHost still thinks there is no error. It will send CreateViewCommandBuffer message to establish a communication channel, which will fail, and GPU process will not restart. To prevent that, we set GpuChannelHost state to lost as soon as CommandBufferProxy finds out about it. BUG=58785 TEST=open a composited tab, in another tab go to about:gpucrash Review URL: http://codereview.chromium.org/6384003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72023 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@google.com authored
This change makes the textfield uneditable. The text can still be updated via API (which is necessary to show URL in popup). BUG=none TEST=uadded new ReadOnlyTest Review URL: http://codereview.chromium.org/6314012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72022 0039d316-1c4b-4281-b951-d872f2087c98
-
sunandt@chromium.org authored
BUG=70280 TEST=none Review URL: http://codereview.chromium.org/6338012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72021 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@google.com authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/6265016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72019 0039d316-1c4b-4281-b951-d872f2087c98
-
petkov@chromium.org authored
BUG=chromium-os:430 TEST=try bots (win, linux, linux_chromeos); tested on device Review URL: http://codereview.chromium.org/6268008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72017 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
Fix for: themes.py:106: SyntaxWarning: assertion is always true, perhaps remove parentheses? Review URL: http://codereview.chromium.org/6309009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72016 0039d316-1c4b-4281-b951-d872f2087c98
-
rvargas@google.com authored
But OrphanJob() call job_->Kill() internally, so first Kill() call in PrepareToRestart() is not needed. This changelist remove the duplicated Kill() call. BUG=chromium:69937 TEST=pass net_unittests. Patch provided by toyoshim@google.com. Original review: http://codereview.chromium.org/6373002/ Review URL: http://codereview.chromium.org/6250021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72015 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
We were previously doing this pretty late in Chrome's shutdown process, which resulted in the closing of individual browser windows often being visible onscreen. This change makes us send the message before closing any windows (at least in the no-beforeunload-handlers-or-downloads case) and flushes the Xlib request queue to make sure that the message won't sit around until the next time that we process events. Note that there are still cases where beforeunload handlers aren't registered but we still won't close the window without warning and hence still show the flip through the windows. See RenderViewHost::sudden_termination_allowed_. BUG=chromium-os:9915 TEST=opened a bunch of windows and checked that we fade to black and hide the cursor immediately on ctrl-shift-q and wrench->sign out. also tested that we don't fade out until the dialog is closed with an affirmative response when http://goo.gl/gzMdN is open Review URL: http://codereview.chromium.org/6353001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72014 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@google.com authored
BUG=68682 TEST=compiles Review URL: http://codereview.chromium.org/6382003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72013 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
TBR=hclam BUG=70291 TEST=none Review URL: http://codereview.chromium.org/6313005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72012 0039d316-1c4b-4281-b951-d872f2087c98
-
sunandt@chromium.org authored
Fixing test testBlockPluginException Sometimes we fail to retrieve the shockwave flash process id. BUG=none TEST=none Review URL: http://codereview.chromium.org/6260015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72011 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/6352001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72010 0039d316-1c4b-4281-b951-d872f2087c98
-
jochen@chromium.org authored
BUG=none TEST=TabSpecificContentSettingsTest.EmptyCookieList Review URL: http://codereview.chromium.org/6352005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72009 0039d316-1c4b-4281-b951-d872f2087c98
-
wtc@chromium.org authored
R=willchan BUG=none TEST=none Review URL: http://codereview.chromium.org/6368010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72008 0039d316-1c4b-4281-b951-d872f2087c98
-
dtu@chromium.org authored
BUG=chromium-os:7473 TEST=none Review URL: http://codereview.chromium.org/6280009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72007 0039d316-1c4b-4281-b951-d872f2087c98
-
tschmelcher@chromium.org authored
- New APIs: - Add a "visible" property to the Layer class to mimick the visible property of the Transform class. - Add a method to set an affine transform on Pattern objects so that texture patterns can be transformed independently from the Layers that use them. - Add a "paint operators" API for Layers and define four operators (currently only three of them implemented). The previous hard-coded behaviour was equivalent to the BLEND_WITH_TRANSPARENCY operator. - Fixes: - Replace the "mask" nomenclature with "clip", which is a more standard name. - Don't clip alpha-blended layers. - Restrict Layer painting to the rectangle defined by the attributes. - Set default alpha value to 0.0 instead of 1.0 to match what JavaScript expects. TEST=loaded O2D and verified all new functionality is working BUG=none Review URL: http://codereview.chromium.org/6255003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72006 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
BUG=69797 Review URL: http://codereview.chromium.org/6304013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72005 0039d316-1c4b-4281-b951-d872f2087c98
-