| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
BUG=50760
TEST=interactive_ui_tests --gtest_filter=KeyboardAccessTest.ReserveKeyboardAccelerator
Review URL: http://codereview.chromium.org/3527007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61411 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
during chrome-initiated xmlhttprequest aborts. Two similar problems are fixed by this CL.
I found a race condition during the early-termination processing of the NpapiUrlRequest objects. If NpapiUrlRequest::Stop is invoked before NpapiUrlRequest::OnStreamCreated, then it is possible that a new stream will be created on the Chrome-Frame side, for which an operation that has been officially cancelled within Chrome. The fix is to add a new parameter fo the NPAPIUrlRequest, stop_requested_ that is used to track this behaviour. If a new stream is created on a request that has been stopped, then that stream is immediately destroyed, without notification back to Chrome.
If Chrome requests an abort of a url request, then Chrome-Frame should not send any notifications back to Chrome concerning the tear-down of that request. The delegate is revoked in NPAPIUrlRequest::Stop to achieve this behaviour.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3530002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61410 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/3607004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61409 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This works with the following caveat: the view does not update as the model does. The view does update the model (when pressing remove), but not vice versa (the view is only updated once, when it is first opened). This is actually also true of the native dialog version. To fix this I will need to add an observer interface to the Geolocation settings map similar to the one in HostContentSettingsMap.
I didn't use the GeolocationExceptionsTableModel because it doesn't seem helpful in this case, although I did copy some code from it. If we move to dom ui completely on all platforms, we can delete that file completely and the relevant parts will have migrated into ContentSettingsHandler. The GeolocationExceptionsTableModel allows for sorting, but I don't know if we care to keep that functionality as the mocks don't cover it, and if so it should probably be pageside.
content_settings_handler is getting more unwieldy and will continue to do so, which motivated me to refactor a little and in particular to add better (or rather, any) comments to the header. I may eventually want to factor out even more functionality as new, special content types get added (plugins, notifications, geolocation, etc? are all non-standard).
BUG=57457
TEST=manual
Review URL: http://codereview.chromium.org/3520012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61408 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=interactive_ui_tests --gtest_filter=AutofillTest.*
Review URL: http://codereview.chromium.org/3492009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61407 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
TBR=tkent
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3578010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61406 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
for the case where the overlay is small.
BUG=53609
TEST=none
Review URL: http://codereview.chromium.org/3556011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61405 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
CL began its life under rdsmith (http://codereview.chromium.org/3548001/show).
BUG=55728
TEST=Run chrome with invalid proxy server and examine navigation error message.
Review URL: http://codereview.chromium.org/3521010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61403 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
It started as an attempt to put the decoder onto another thread. However, this became complicated due to multiple object ownership transfers and coupling between the decode layer and the network layer; the decoder's states were highly coupled with how the network packets were processed.
This could probably be broken up slightly, but at this point, it's easier to just commit as a whole The refactor includes:
1) Making the decoder interface unaware of "network packet" types.
2) Making the network layer process packets in order.
3) Threading through asynchronous APIs all over the place.
4) Simplifying the rectangle update protocol.
5) Cleaning up object lifetime and ownership semantics between the decode layer and the renderer.
As of right now, the Verbatim format is still broken on the encode side because it uses the old protocol.
BUG=52883, 57351
TEST=still connects to chromoting_simple_host
Review URL: http://codereview.chromium.org/3305001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61402 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(... instead of a PP_Var). This allows binary data to be appended to POSTs.
This rolls DEPS to pick up PPAPI r269.
BUG=none
TEST=Pepper URLLoader tests
Review URL: http://codereview.chromium.org/3548009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61401 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=57875
TEST=
Review URL: http://codereview.chromium.org/3552007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61400 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=54833
TEST=none
Review URL: http://codereview.chromium.org/3560008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61399 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=51345
Review URL: http://codereview.chromium.org/3617003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61398 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=49381
Review URL: http://codereview.chromium.org/3617004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61397 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
BUG=chromium-os:5860
TEST=Remove user from home screen. Ensure that directory in /home/.shadow
is also removed. Can also check if non-synced data no longer appears when
same user is recreated. Downloads are an example of this.
Review URL: http://codereview.chromium.org/3290023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61396 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=PhishingClassifierTest
Review URL: http://codereview.chromium.org/3572008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61395 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=None
TEST=Open https://internet-banking.dbs.com.sg/
Review URL: http://codereview.chromium.org/3515009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61394 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none.
TEST=All build bots should still be happy.
Review URL: http://codereview.chromium.org/3619001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61393 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=57608
TEST=Existing background mode tests suffice
Review URL: http://codereview.chromium.org/3541009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61392 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61390 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=55148
TEST=Minimize apps section. Install an app. Apps section should no longer be minimized.
Review URL: http://codereview.chromium.org/3555010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61388 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In Linux, the sort ordering in the task manager is incorrect, as in when you
click on a column header to sort the values the first time, it shows a triangle
with the pointy head downwards, i.e. it should show the values from larger to
smaller. But currently, the values are shown smaller to larger. So this small
patch is a fix for that. This is also consistent with the behaviour on Windows.
Also, this makes more sense. When a user is sorting, for example, the memory or
the cpu column, it is more likely he is interested on the pages that are taking
the most memory/cpu, so they should be at the top for the first sort.
BUG=none
TEST=after opening multiple tabs, bring up the task manager, then click on the
memory column header. It should show the page using the most memory on top.
patch by Sadrul Chowdhury <sadrul [at] chromium [dot] org>
original review: http://codereview.chromium.org/3590009
Review URL: http://codereview.chromium.org/3615006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61387 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Many of the tests are failing, but these are taking 40 seconds to
fail.
BUG=existing bugs that these tests are failing
Review URL: http://codereview.chromium.org/3533009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61385 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=56589
TEST=go to a non-existent page in a packaged app. standard built-in 404 should show rather than the new pretty page.
Review URL: http://codereview.chromium.org/3524003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61384 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
Also return one value per reference.
BUG=None
TEST=None
TBR=finnur
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61383 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=47347
TEST=manual
Review URL: http://codereview.chromium.org/3584003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61378 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
| |
BUG=57832
Review URL: http://codereview.chromium.org/3534009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61377 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
This patch on behalf of Jon Leighton (leighton@cis.udel.edu)
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3550005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61376 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
This test times out regularly in the vista build bots and infrequently in others.
I'm add some logs earlier and making progress, so adding more logs to narrow down the issue.
BUG=51337
TEST=waterfall doesn't go read due to this test.
TBR=bulach
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61375 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
TBR=phajdan.jr
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61373 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
on Linux.
There is some other Windows-specific (?) flake, http://crbug.com/47228
TBR=bauerb
BUG=56401
TEST=none
Review URL: http://codereview.chromium.org/3574007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61372 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3571011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61370 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Requested by jeffrecy.
BUG=None
TEST=Go to about:labs, read text. Should've made you roll your eyes.
Review URL: http://codereview.chromium.org/3521009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61369 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
TBR=thakis
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3606007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61368 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
TBR=aa
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3534008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61367 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Win.
BUG=57832
TBR=timurrrr
Review URL: http://codereview.chromium.org/3534007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61366 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Also, explicitly test NavigateToURL's return value instead of treating it like a boolean.
BUG=56670
TEST=ui_tests --gtest_filter="*LoginPromptTest*"
Review URL: http://codereview.chromium.org/3618001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61365 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
I think I'm getting close to figuring out why the test fails only on the bots.
TBR=aa
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3578009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61364 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When I run Chrome through a proxy, this WARNING log triggers very frequently. Typically immediately after it's called, CloseOneIdleSocket() is invoked and a connect job is still allowed to proceed.
If this WARNING was useful in the past, I will add it to the call sites at appropriate places (such as when there are no idle sockets for the pool and a request must be queued) rather than inside ReachedMaxSocketsLimit().
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3526013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61363 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=None
TEST=None
TBR=aa
Review URL: http://codereview.chromium.org/3533012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61362 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
These tests were already LGed here...
http://codereview.chromium.org/3440027
... but once checked in they failed on the build bots (despite working locally).
I have added some temporary tracing to try to track down the cause. Will remove, after a run on the bots.
TBR=aa
BUG=36275
TEST=AllUrlsApiTest (two new)
Review URL: http://codereview.chromium.org/3598007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61361 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Menu position offset was implemented for menu button and language menu.
So 2 magic number were used to position the menu. This CL removes offset
handling from the language menu class, since this is not common for
menu.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3610005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61360 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<all_urls> in their Extension match pattern should be allowed to run content scripts everywhere (including chrome://, chrome-extension://, about: and gallery pages.
The intent was to also allow these extensions to specify more granular permissions, such as about:version instead of <all_urls>, but that didn't make the cut this time.
This CL also enables <all_urls> for host permissions for regular extensions, which was disabled before. Note: That still doesn't give them permission to script the gallery and chrome:// pages, etc.
BUG=36275
TEST=Working on it right now.
Review URL: http://codereview.chromium.org/3585009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61359 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This also allows us to remove a quite complicated test.
The lifetime of the test server is now fully controlled by its c++ launcher.
BUG=49680
TEST=none
Review URL: http://codereview.chromium.org/3479018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61358 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
TabContents::AddSavePasswordInfoBar)
Suppressed bug 57799 (leak at cricket::Transport::OnRemoteCandidate)
on Valgrind and Heapcheck bots.
TBR=timurrrr
BUG=57799,57800
Review URL: http://codereview.chromium.org/3621002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61357 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
The test which times out can be seen at http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=SpeechInputBrowserTest.TestBasicRecognition&testType=browser_tests
BUG=none
TEST=none, since we are just adding more logging.
TBR=bulach
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61356 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=build with use_openssl=1 and open some https pages
Review URL: http://codereview.chromium.org/3518004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61355 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/3581011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61354 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=57799
TBR=sergeyu
Review URL: http://codereview.chromium.org/3599012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61353 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
in remoting::TCPChannelTester::CheckResults())
TBR=rsesek
BUG=57692
Review URL: http://codereview.chromium.org/3613006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61352 0039d316-1c4b-4281-b951-d872f2087c98
|