- 24 May, 2011 40 commits
-
-
sunandt@google.com authored
BUG=83763 TEST=find_in_page.FindMatchTests.testSearchInPDF Review URL: http://codereview.chromium.org/6992044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86523 0039d316-1c4b-4281-b951-d872f2087c98
-
dmaclach@chromium.org authored
BUG=NONE TEST=BUILD Review URL: http://codereview.chromium.org/7067046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86522 0039d316-1c4b-4281-b951-d872f2087c98
-
dmaclach@chromium.org authored
Clang didn't like my property decls. Cleaned it up a bit at the same time. BUG=NONE TEST=BUILD Review URL: http://codereview.chromium.org/7064045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86520 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
For downloads requiring a user gesture, also require the user to have visited the site before today, to hamper attackers. BUG=81741 TEST=.exe downloads on Windows triggered by an explicit link click should prompt you to confirm iff they are hosted on a site you have not visited before today. Review URL: http://codereview.chromium.org/7065015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86518 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
Don't terminate plugin processes from the browser during browser shutdown. This is to allow the plugins to shutdown gracefully, i.e. NP_Shutdown gets called. To ensure that we handle the case of a hung plugin, we handle the OnChannelError notification in the IPC message filter implementation in the plugin process and post a delayed task to kill the process. Fixes bug http://code.google.com/p/chromium/issues/detail?id=48178 BUG=48178 Review URL: http://codereview.chromium.org/6992006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86517 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
is just a prototype for us to play with. There are plenty of issues to resolve before its made real, but I wanted to check something in for others to play with rather than keeping it all local. To get it to compile you need to set the GYP_DEFINE to views_compositor. BUG=none TEST=none R=ben@chromium.org,apatrick@chromium.org Review URL: http://codereview.chromium.org/7067029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86516 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
display:none already. BUG=none TEST=none R=csilv@chromium.org Review URL: http://codereview.chromium.org/7067036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86514 0039d316-1c4b-4281-b951-d872f2087c98
-
nduca@chromium.org authored
Review URL: http://codereview.chromium.org/6879076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86513 0039d316-1c4b-4281-b951-d872f2087c98
-
rohitrao@chromium.org authored
BUG=None TEST=None Review URL: http://codereview.chromium.org/7066036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86512 0039d316-1c4b-4281-b951-d872f2087c98
-
wjia@google.com authored
VideoCaptureManager opens/closes, starts/stops and enumerates video capture devices. VideoCaptureManager Open/Close/EnumerateDevices will be used by MediaStreamManager (will be added later) to implement parts of WhatWG peer connection API. VideoCaptureHost (will also be added later) will call Start/Stop to controll the media flow. A unit test is provided and added to chrome/chrome_tests.gypi. content/browser/media_stream/media_stream_provider.h will later be inherited by an audio capture manager as well. patch by mflodman@google.com BUG=none TEST=try bots Review URL: http://codereview.chromium.org/6946001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86511 0039d316-1c4b-4281-b951-d872f2087c98
-
junov@chromium.org authored
Turns on the gpu accelerated canvas by default BUG=82017 TEST=none Review URL: http://codereview.chromium.org/7064032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86510 0039d316-1c4b-4281-b951-d872f2087c98
-
yoshiki@chromium.org authored
In some cases, DetectEncoding() crashes and the reason may be becasue ucsdet_detect() returns NULL with no error status. (cf. http://crosbug.com/15691) BUG=http://crosbug.com/15691 TEST=none Review URL: http://codereview.chromium.org/7064039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86509 0039d316-1c4b-4281-b951-d872f2087c98
-
vandebo@chromium.org authored
main project. BUG=76996 TEST=none Review URL: http://codereview.chromium.org/7055016 TBR=rvargas@google.com Review URL: http://codereview.chromium.org/7064042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86508 0039d316-1c4b-4281-b951-d872f2087c98
-
tburkard@chromium.org authored
control group are recorded properly. Review URL: http://codereview.chromium.org/7065043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86507 0039d316-1c4b-4281-b951-d872f2087c98
-
ahendrickson@chromium.org authored
http://codereview.chromium.org/6881106/ introduced a problem on the chrome frame bots. This CL is intended to disable the test there. BUG=None TEST=chrome frame bots are green. Review URL: http://codereview.chromium.org/6992037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86504 0039d316-1c4b-4281-b951-d872f2087c98
-
shess@chromium.org authored
Thirdy-party print drivers seem to be a source of NSExceptions which Chromium will never be able to fix. ScopedNSExceptionEnabler causes the code which makes throwing an NSException fatal to allow throws. The flag will be reset in -reportException: in most cases. For now, allow exceptions to be thrown for -selectPDE: (bug 80686) and PrintingContextMac::AskUserForSettings() (bug 82589). BUG=80686, 82589 TEST=Monitor crash server. Review URL: http://codereview.chromium.org/7038010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86503 0039d316-1c4b-4281-b951-d872f2087c98
-
dpapad@chromium.org authored
This is done in preparation for multi-tab selection in Linux (http://codereview.chromium.org/6933037/). There was a TODO for that in tab_strip_model_observer.h:75 BUG=NONE TEST=Tab behavior should be unaffected on all platforms Review URL: http://codereview.chromium.org/7043020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86502 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@google.com authored
BUG=77576 TEST=On a confirm infobar with multiple buttons, all buttons are the same width. Review URL: http://codereview.chromium.org/7066031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86500 0039d316-1c4b-4281-b951-d872f2087c98
-
jianli@chromium.org authored
BUG=none TEST=panel_browser_view_browsertest Review URL: http://codereview.chromium.org/7055001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86499 0039d316-1c4b-4281-b951-d872f2087c98
-
adamk@chromium.org authored
TBR=ukai@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86498 0039d316-1c4b-4281-b951-d872f2087c98
-
sfeuz@chromium.org authored
BUG=83431 Review URL: http://codereview.chromium.org/7054022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86497 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
http://code.google.com/p/skia/source/detail?r=1405 make SkIntToScalar more strict (it no longer allows double arguments), so the roll requires a minor code change. BUG=none TEST=none TBR=epoger Review URL: http://codereview.chromium.org/7067031 TBR=thakis@chromium.org Review URL: http://codereview.chromium.org/7065040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86495 0039d316-1c4b-4281-b951-d872f2087c98
-
mirandac@chromium.org authored
BUG=83766 TEST=forthcoming Review URL: http://codereview.chromium.org/7067033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86494 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@google.com authored
PyAuto login automation is broken such that it crashes the browser in cases where the ownership is not taken and you don't wait long enough for chrome to startup, login dialog to show, etc. It takes time for chrome to sink these in. For this reason pyauto tests on autotest lab machines were failing (the autotest lab machines begin with a clean stateful partition, and then we trigger a session_manager restart after creating enable_chromium_minidumps file) This CL fixes the launcher. The Login() automation still needs to be fixed to be resilient to the login dialog to show up. BUG=15582 TEST=pyauto test fire up on chromeos autotest lab machines Review URL: http://codereview.chromium.org/7065016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86493 0039d316-1c4b-4281-b951-d872f2087c98
-
rvargas@google.com authored
export net::HttpNetworkLayer BUG=76997 TEST=NONE Review URL: http://codereview.chromium.org/6992032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86492 0039d316-1c4b-4281-b951-d872f2087c98
-
xiyuan@chromium.org authored
- UpgradeDetector::CheckForUpgrade uses ChromeOS update libary status for ChromeOS upgrade check; - Remove ChromeOS specific code from ToolbarView since it could solely use UpgradeDetector now; - Remove notification from update library since UpgradeDetector will do this; - Update WrenchMenuModel to solely talk to UpgradeDetector; BUG=chromium-os:15272 TEST=Verify fix for chromium-os:15272 and run regression tests for ChromeOS update. Review URL: http://codereview.chromium.org/6966025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86491 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
http://code.google.com/p/skia/source/detail?r=1405 make SkIntToScalar more strict (it no longer allows double arguments), so the roll requires a minor code change. BUG=none TEST=none TBR=epoger Review URL: http://codereview.chromium.org/7067031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86489 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
Add NativeWidgetViews. This is a stub implementation that mostly just defers to its parent NativeWidget. http://crbug.com/83663 TEST=none Review URL: http://codereview.chromium.org/6990048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86488 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=71097 TEST=still builds Review URL: http://codereview.chromium.org/6966037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86487 0039d316-1c4b-4281-b951-d872f2087c98
-
rvargas@google.com authored
main project. BUG=76996 TEST=none Review URL: http://codereview.chromium.org/7055016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86486 0039d316-1c4b-4281-b951-d872f2087c98
-
joi@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/7067035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86485 0039d316-1c4b-4281-b951-d872f2087c98
-
ahendrickson@chromium.org authored
BUG=83638 TEST=Valgrind does not detect the leak. Review URL: http://codereview.chromium.org/6990044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86484 0039d316-1c4b-4281-b951-d872f2087c98
-
apatrick@chromium.org authored
This doesn't do anything useful yet beyond allowing the renderer process to manage the lifetime of an offscreen GLSurface in the GPU process. More to come. Review URL: http://codereview.chromium.org/6992010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86482 0039d316-1c4b-4281-b951-d872f2087c98
-
dmaclach@chromium.org authored
BUG=NONE TEST=BUILD Review URL: http://codereview.chromium.org/7039047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86480 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
this code should go away soon but for now this is less broke. BUG=none TEST=when you add a new app, the nav dots at the bottom don't break horribly. Review URL: http://codereview.chromium.org/6990063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86479 0039d316-1c4b-4281-b951-d872f2087c98
-
dmaclach@chromium.org authored
This will help performance on our main thread, and will future proof us. BUG=NONE TEST=BUILD Review URL: http://codereview.chromium.org/6992033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86478 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
Splitting out this smaller CL from a larger one cleaning up our bookmark import logic. BUG=none TEST=none Review URL: http://codereview.chromium.org/7056033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86477 0039d316-1c4b-4281-b951-d872f2087c98
-
gfeher@chromium.org authored
-Add output nodes of translations into policy_templates.grd. -Copy translated string tables into the Mac bundle. -Work around the problem that the zip tool would get too long command-line arguments if all the translated templates were enumerated as arguments. -Fix importing of UTF-8 strings into the template generator BUG=61779 TEST=Check that there are translated adml, adm and html files in policy_templates.zip. Review URL: http://codereview.chromium.org/6969064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86476 0039d316-1c4b-4281-b951-d872f2087c98
-
stevet@chromium.org authored
BUG=83737 TEST=Start Chrome with profiles enabled and in opaque theme (non Aero). Maximize the frame and ensure that the profile tag lines up with the top of the frame like the window controls. Review URL: http://codereview.chromium.org/7066024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86475 0039d316-1c4b-4281-b951-d872f2087c98
-
dmaclach@chromium.org authored
BUG=NONE TEST=BUILD Review URL: http://codereview.chromium.org/7004036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86474 0039d316-1c4b-4281-b951-d872f2087c98
-