- Dec 16, 2010
-
-
jianli@chromium.org authored
TBR=yurys BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69459 0039d316-1c4b-4281-b951-d872f2087c98
-
http://codereview.chromium.org/5550006/kbr@google.com authored
Implement WebKitClientImpl::loadAudioResource() to decode in-memory audio file data for use by WebKit. Most of the interesting low-level code is being added in the media directory. BUG=NONE TEST=NONE (tested locally with web audio API loading files of format .wav .aif .mp3 .m4a 16bit 24bit In the longer term, WebKit layout tests will comprehensively exercise this code) Review URL: http://codereview.chromium.org/5880002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69458 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
"Official Build" to fix UMA issue. "LastChange" for convinience. BUG=none TEST=none Review URL: http://codereview.chromium.org/5860001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69457 0039d316-1c4b-4281-b951-d872f2087c98
-
panayiotis@google.com authored
BUG=67106 TEST=unit_tests Review URL: http://codereview.chromium.org/5906003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69456 0039d316-1c4b-4281-b951-d872f2087c98
-
lzheng@chromium.org authored
TEST=all tests using test server not broken. BUG=none Review URL: http://codereview.chromium.org/5884002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69455 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
- Simplified mutation semantic: Update() replaced with Save(). Set methods can be called at any time. - JsonHostConfig now inherits from InMemoryHostConfig to avoid code duplication. - Added kHostEnabledConfigPath. BUG=None TEST=Unittests. Review URL: http://codereview.chromium.org/5738008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69454 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@google.com authored
BUG=59282 TEST=none Review URL: http://codereview.chromium.org/5850004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69453 0039d316-1c4b-4281-b951-d872f2087c98
-
cbentzel@chromium.org authored
I mistakenly did a Cancel in the callee's destructor, which would reinvoke traits_.ReleaseCallee Since this is a programming error, it's not a required change. BUG=None TEST=base_unittests --gtest_filter="TaskTest.TestCancelInDestructor" Review URL: http://codereview.chromium.org/5886002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69451 0039d316-1c4b-4281-b951-d872f2087c98
-
ericdingle@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/5910003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69449 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
BUG=66808 TEST=Unittests Review URL: http://codereview.chromium.org/5761003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69448 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
BUG=67094 Review URL: http://codereview.chromium.org/5914004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69446 0039d316-1c4b-4281-b951-d872f2087c98
-
tessamac@google.com authored
Confirm all extension and app installs in a normal window, even if they were installed in an incognito window. BUG=62752 TEST=Install extension and app in incognito and normal modes. Review URL: http://codereview.chromium.org/5942001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69445 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
Many (most?) of the bugs related to the new message pump have been fixed, and it is ready for testing. It's stable enough that it shouldn't block other people's works. BUG=none TEST=none Review URL: http://codereview.chromium.org/5940003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69444 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
this we need to add the desired value in the registry under the Internet Settings\User Agent\Post Platform key. We add this under the per user or per machine section in the registry depending on whether ChromeFrame is being installed in per user or per machine mode. This fixes the bug where certain top level requests in IE would not have the chrome frame UA appended to the IE UA. Removed the BeginningTransaction vtable patch code, which only existed to add chrome frame to the UA in outgoing requests. The limitation with registering the chrome frame UA in the registry is that it will be sent out even in the ChromeFrame BHO is disabled. Fixes bug http://code.google.com/p/chromium/issues/detail?id=45087 BUG=45087 TESt=Covered by new chrome frame test. Review URL: http://codereview.chromium.org/5831002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69442 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
Protect reading and writing startup_data_ to ensure intruction order and to ensure the value is correctly read in the new thread. Contributed by phanna (Android) BUG=67145 TEST=none http://codereview.chromium.org/5933002/ git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69438 0039d316-1c4b-4281-b951-d872f2087c98
-
siggi@chromium.org authored
This seems to have broken SSLUITest.TestHTTPWithBrokenHTTPSResource SSLUITest.TestHTTPSExpiredCertAndProceed SSLUITest.TestCNInvalidStickiness SSLUITest.TestRefNavigation on Linux & Linux64. We're going to add a new type to the WebIDBKey::Type enum on the WebKit side. The build will complain this isn't handled in switch statements, so add a temporary default: case for now. BUG=64060 TEST=none Review URL: http://codereview.chromium.org/5885004 TBR=hans@chromium.org Review URL: http://codereview.chromium.org/5918005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69437 0039d316-1c4b-4281-b951-d872f2087c98
-
bauerb@chromium.org authored
This means that outdated plug-ins still show up in navigator.plugins, which gets rid of the misleading "Install Quicktime" messages. Screens: http://www.dropmocks.com/mNkqe BUG=47731 TEST=none Review URL: http://codereview.chromium.org/5917001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69435 0039d316-1c4b-4281-b951-d872f2087c98
-
kkania@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/5870004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69434 0039d316-1c4b-4281-b951-d872f2087c98
-
amit@chromium.org authored
1] Remove installer::version and use base::version in installer 2] Use file_util::FileEnumerator instead of calling FindFirstFile directly BUG=none TEST=covered by existing tests Review URL: http://codereview.chromium.org/5687004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69433 0039d316-1c4b-4281-b951-d872f2087c98
-
mbelshe@chromium.org authored
which can span multiple packets. Since the entire SSL record must be received before any of it can be handed up to the app, this delays the time at which the client can start processing the data. BUG=none TEST=self Review URL: http://codereview.chromium.org/5941002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69432 0039d316-1c4b-4281-b951-d872f2087c98
-
kmadhusu@chromium.org authored
BUG=67044 TEST=Printing don't trigger AssertIOAllowed DCHECKs. Review URL: http://codereview.chromium.org/5832005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69431 0039d316-1c4b-4281-b951-d872f2087c98
-
annacc@chromium.org authored
It's time to finally separate the huge monster files buffered_data_source.[h/cc] into two. ericroman: There are some variables and short methods that both BufferedDataSource and BufferedResourceLoader rely on and that I have moved to src/net/http/http_util.h. Could you please verify that this is an ok place to put them? Also, appcache issues have been resolved (and approved by michaeln) so I've removed those comments. BUG=None. TEST=Compiles. Review URL: http://codereview.chromium.org/5756004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69429 0039d316-1c4b-4281-b951-d872f2087c98
-
grt@chromium.org authored
Add support for --multi-install to mini_installer, fixed a memory leak, fixed use of Win32 registry API, and refactored SetFullInstallerFlag so that it can be exercised in unit tests (tests to follow). When --multi-install is not on command-line, "-full" is still added to the appropriate product "ap" value in official builds. When --multi-install is present, "-full" is added to the multi installer's "ap" value unless a product is being migrated from single-install to multi-install, in which case it is put on the product's "ap" value as before. BUG=61609 TEST=Manual for now: run mini_installer.exe in various configurations, inspecting "ap" values as you go. Review URL: http://codereview.chromium.org/5875003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69428 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
This reverts commit r69420. WebKit Linux tests went red for some reason. Reverting to see if it was this change. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69426 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
webkit/plugins/ppapi/*. This renamed the files and interface implementation classes from foo.cc/Foo to ppb_foo_impl/PPB_Foo_Impl to match the proxy ppb_foo_proxy/PPB_Foo_Proxy. This moves plugin_switches.* from webkit/glue/plugins to webkit/plugins. Review URL: http://codereview.chromium.org/5828003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69424 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
This change should allow you to press Shift+Delete to remove selected results from the Omnibox auto-complete drop-down that have been collected from the contents of pages from the user's history. BUG=14748 TEST=trybots and deleting history-contents results from the omnibox auto-complete drop-down. Review URL: http://codereview.chromium.org/5774004 Patch from Michael Wasserman <msw@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69422 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
This triggers the infrastruture of Snap Start without enabling Snap Start itself. This is a good thing because, by caching the certificates on disk (which we need to do for Snap Start), we can start certificate verification concurrently with the DNS, TCP and TLS round trips. The savings when the OCSP memory cache is stale are decent (several hundred milliseconds) and there's a histogram to measure it. BUG=none TEST=net_unittests http://codereview.chromium.org/5705007/ git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69420 0039d316-1c4b-4281-b951-d872f2087c98
-
tburkard@chromium.org authored
TEST=run PrerenderManagerTest BUG=none Review URL: http://codereview.chromium.org/5720006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69419 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
BUG=none TEST=git status TBR=evan Review URL: http://codereview.chromium.org/5933003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69418 0039d316-1c4b-4281-b951-d872f2087c98
-
asargent@chromium.org authored
BUG=none TEST=none TBR=kurrik@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69417 0039d316-1c4b-4281-b951-d872f2087c98
-
hans@chromium.org authored
We're going to add a new type to the WebIDBKey::Type enum on the WebKit side. The build will complain this isn't handled in switch statements, so add a temporary default: case for now. BUG=64060 TEST=none Review URL: http://codereview.chromium.org/5885004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69416 0039d316-1c4b-4281-b951-d872f2087c98
-
asargent@chromium.org authored
BUG=none TEST=none Patch from bmcquade@google.com Original codereview: http://codereview.chromium.org/5707010/ Review URL: http://codereview.chromium.org/5953001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69415 0039d316-1c4b-4281-b951-d872f2087c98
-
wtc@google.com authored
R=agl BUG=63357 TEST=none Review URL: http://codereview.chromium.org/5386001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69414 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
BUG=59930 Review URL: http://codereview.chromium.org/5905004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69413 0039d316-1c4b-4281-b951-d872f2087c98
-
mirandac@chromium.org authored
Migrate HostReferralList and StartupDNSPrefetchList from local_state to user preferences, in preparation for multi-profile. BUG=66717 TEST=none. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=69320 Review URL: http://codereview.chromium.org/5800004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69412 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
BUG=42895,61260 TEST=webkit bots go green git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69411 0039d316-1c4b-4281-b951-d872f2087c98
-
mmenke@chromium.org authored
ERR_NETWORK_IO_SUSPENDED. BUG=66728,63874 TEST=manual Review URL: http://codereview.chromium.org/5826003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69410 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
We were unintentionally failing media/media-can-play-wav-audio.html and media/media-document-audio-size.html. BUG=42895,61260 TEST=media layout tests Review URL: http://codereview.chromium.org/5899003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69409 0039d316-1c4b-4281-b951-d872f2087c98
-
senorblanco@chromium.org authored
BUG=67112 TEST=none TBR=chase Review URL: http://codereview.chromium.org/5837002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69408 0039d316-1c4b-4281-b951-d872f2087c98
-
cbentzel@chromium.org authored
BUG=66978 TEST=None Review URL: http://codereview.chromium.org/5868002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69407 0039d316-1c4b-4281-b951-d872f2087c98
-