- 06 Aug, 2013 40 commits
-
-
annark@chromium.org authored
BUG=267844 Review URL: https://chromiumcodereview.appspot.com/22043004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215921 0039d316-1c4b-4281-b951-d872f2087c98
-
skyostil@chromium.org authored
Clean up a stray #ifdef that prevented the --disable-webgl flag from getting passed to the renderer when WebGL is blacklisted. Note that the blacklist was already correctly disabling WebGL even before this patch via GpuDataManagerImplPrivate::UpdateRendererWebPrefs(). BUG=112928 Review URL: https://chromiumcodereview.appspot.com/21877004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215920 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
* Name the command IDC_CONTENT_CONTEXT_SEARCHWEBFORIMAGE to be more parallel to the existing "...SEARCHWEBFOR" command and to avoid saying NEWTAB in the command name (since the command isn't inherently about new tabs). * Clean up and fix comment on an exclusion for chrome UI scheme images. * Fix erroneous DCHECK of default search provider when handling the ACK from the renderer; the search provider can go away while the IPC is in progress. Also clean this code up a little. BUG=none TEST=none R=jnd@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/22314006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215919 0039d316-1c4b-4281-b951-d872f2087c98
-
qsr@chromium.org authored
When MHTML start to download mhtml, it does keep track of the callbacks it will need to call when the jobs are done. But if the render process dies while serializing a page, the manager will not be called, and the callback will stays stall forever. This CL make sure that MHTMLGenerationManager is getting notified when the renderer process dies and send an error for all currently active jobs. R=jcivelli@chromium.org Review URL: https://chromiumcodereview.appspot.com/21512003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215918 0039d316-1c4b-4281-b951-d872f2087c98
-
alokp@chromium.org authored
It was originally added to manually exercise gpu command buffer. Now we have gl_tests and gles2 conformance tests running on gpu bots. BUG=98130 TBR=apatrick@chromium.org Review URL: https://codereview.chromium.org/22325003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215916 0039d316-1c4b-4281-b951-d872f2087c98
-
mdempsky@google.com authored
BUG=178450 Review URL: https://chromiumcodereview.appspot.com/21415003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215915 0039d316-1c4b-4281-b951-d872f2087c98
-
pneubeck@chromium.org authored
BUG=263044 Review URL: https://chromiumcodereview.appspot.com/20087002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215914 0039d316-1c4b-4281-b951-d872f2087c98
-
pshenoy@chromium.org authored
Please refer this CL. https://codereview.chromium.org/21432002/ BUG=None. NOTRY=true Review URL: https://chromiumcodereview.appspot.com/22272003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215913 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
An browser test which cover whole translate process was disabled tentatively. This is because now Translate scripts runs inside a v8 isolated world and it make impossible to run with local testing server. This change introduce a flag to change the allowed server for XHR, and make the test enabled again. Note that this flag is warned by infobar when it is enabled. BUG=268785 TEST=browser_tests --gtest_filter='Translate*.*' TBR=hajimehoshi@chromium.org Review URL: https://chromiumcodereview.appspot.com/14180010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215912 0039d316-1c4b-4281-b951-d872f2087c98
-
rjkroege@chromium.org authored
R=sky@chromium.org Review URL: https://codereview.chromium.org/21567004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215911 0039d316-1c4b-4281-b951-d872f2087c98
-
bauerb@chromium.org authored
While Sync is being initialized, managed user registration can take way more than 30 seconds, so an automatic timeout does not give any benefit to the user. BUG=254042 Review URL: https://chromiumcodereview.appspot.com/22409002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215910 0039d316-1c4b-4281-b951-d872f2087c98
-
torne@chromium.org authored
Use full pathnames to refer to skia includes in skia/ext/lazy_pixel_ref_utils.cc to match all the other code in skia/ext. BUG= Review URL: https://chromiumcodereview.appspot.com/22407002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215909 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome://theme/kaznacheev@chromium.org authored
BUG=None Review URL: https://chromiumcodereview.appspot.com/22366004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215908 0039d316-1c4b-4281-b951-d872f2087c98
-
vandebo@chromium.org authored
NOTRY=true BUG=NONE Review URL: https://chromiumcodereview.appspot.com/22313003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215907 0039d316-1c4b-4281-b951-d872f2087c98
-
creis@chromium.org authored
Caused flakiness on Linux ASAN PlatformAppBrowserTest.DisallowNavigation. > Ensure that renderer-initiated pending entries can be replaced when a new > navigation is started. > > We don't replace browser-initiated pending entries in didStartProvisionalLoad > because either (1) they were just created for this navigation and are already > correct, (2) they're for a different SiteInstance and won't be used upon > commit, or (3) they're same-site (see below). > > Note that pending entries for same-site browser-initiated navigations can be > incorrectly used for renderer-initiated navigations that interrupt them, but > that's a long standing bug that we can address separately. > > BUG=266922 > TEST=See bug for repro steps. > > Review URL: https://chromiumcodereview.appspot.com/21913003 TBR=creis@chromium.org Review URL: https://codereview.chromium.org/22364004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215904 0039d316-1c4b-4281-b951-d872f2087c98
-
bauerb@chromium.org authored
BUG=259798 Review URL: https://chromiumcodereview.appspot.com/22224003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215899 0039d316-1c4b-4281-b951-d872f2087c98
-
dubroy@chromium.org authored
BUG=268957 TEST=Open chrome://history and ensure that there is no space between the bottom border of the search field, and the top border of the title of the first day of results. R=bauerb@chromium.org Review URL: https://codereview.chromium.org/22320012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215898 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Move gamepad reader code out of PepperHelperImpl in the effort to eliminate PepperHelperImpl. I'm also making one instance per renderer instead of one per process for WebKit in RendererWebKitPlatformSupportImpl, and one per RenderView for Pepper. BUG=263054 R=scottmg@chromium.org Review URL: https://codereview.chromium.org/22320006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215897 0039d316-1c4b-4281-b951-d872f2087c98
-
fmalita@chromium.org authored
Just in case you were wondering why that translate(0, 0) shows up as more expensive than a drawBitmapRect() :) TBR=senorblanco@chromium.org Review URL: https://codereview.chromium.org/22424003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215896 0039d316-1c4b-4281-b951-d872f2087c98
-
ibraaaa@chromium.org authored
BUG=268786 Review URL: https://chromiumcodereview.appspot.com/22405002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215889 0039d316-1c4b-4281-b951-d872f2087c98
-
bartfab@chromium.org authored
This CL adds CloudExternalDataManagerBase, a fully functional implementation of the ExternalDataManager interface that allows external data referenced by policies to be fetched, verified, cached and retrieved. The CL also extends policy_templates.json to allow policies referencing external data to be specified. There is no code in Chrome that instantiates CloudExternalDataManagerBase yet. Follow-up CLs will create CloudExternalDataManagerBase instances for desktop users, Chrome OS users and Chrome OS device-local accounts. BUG=256635 TEST=New unit test Review URL: https://chromiumcodereview.appspot.com/19462006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215888 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
BUG=257618 Review URL: https://chromiumcodereview.appspot.com/22391002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215887 0039d316-1c4b-4281-b951-d872f2087c98
-
bauerb@chromium.org authored
TBR=pneubeck@chromium.org,scottbyer@chromium.org BUG=263894 Review URL: https://chromiumcodereview.appspot.com/21030009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215885 0039d316-1c4b-4281-b951-d872f2087c98
-
glider@chromium.org authored
BUG=268941 TBR=thakis@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/22418002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215884 0039d316-1c4b-4281-b951-d872f2087c98
-
bauerb@chromium.org authored
BUG=262104 Review URL: https://chromiumcodereview.appspot.com/22216002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215883 0039d316-1c4b-4281-b951-d872f2087c98
-
jiangj@opera.com authored
When running tests (zip_unittests.cc for instance) using base::DIR_SOURCE_ROOT with ./<test_executable_name> they will get incorrect directory names because ./ will be included in the return value of GetNSExecutablePath() and it will be consider as one level of parent directory by FilePath::DirName(). To avoid this problem we should alway convert the value returned by GetNSExecutablePath() into absolute path first. BUG=258846 TEST=see bug Review URL: https://chromiumcodereview.appspot.com/18309008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215882 0039d316-1c4b-4281-b951-d872f2087c98
-
marja@chromium.org authored
It causes renderer exits (see bug) which need to be investigated before relanding. BUG=265819 TBR=michaeln Review URL: https://codereview.chromium.org/22320010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215881 0039d316-1c4b-4281-b951-d872f2087c98
-
yoichio@chromium.org authored
function to set InputScopes representing both TextInputType and TextInputMode. implementation: change GetSetInputScope to GetSetInputScopes function to get SetInputScopes procedure address from msctf.dll. BUG=244688 TEST=Manually done on Windows 8 with on-screen keyboard Review URL: https://chromiumcodereview.appspot.com/21157006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215880 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215879 0039d316-1c4b-4281-b951-d872f2087c98
-
dominikg@chromium.org authored
Add a check for MHTML files to TranslateManager::IsTranslatableURL(). This causes the translate infobar to not be shown for MHTML files, because Chrome fails when trying to translate MHTML files. BUG=217945 Review URL: https://chromiumcodereview.appspot.com/19857005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215878 0039d316-1c4b-4281-b951-d872f2087c98
-
robertphillips@google.com authored
R=rmistry@google.com Review URL: https://codereview.chromium.org/22331002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215877 0039d316-1c4b-4281-b951-d872f2087c98
-
egraether@chromium.org authored
This change adds another optional parameter 'overdraw' to the rasterize method of the skia benchmarking extension. When set to true an image with pixel overdraw visualized as heat map is returned. BUG=268342 Review URL: https://chromiumcodereview.appspot.com/22202003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215876 0039d316-1c4b-4281-b951-d872f2087c98
-
tzik@chromium.org authored
BUG=240165 Review URL: https://chromiumcodereview.appspot.com/22369003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215875 0039d316-1c4b-4281-b951-d872f2087c98
-
owenlin@chromium.org authored
1. Add the switch "target_fps" to control the playing speed. This is used to measure the frame drop rate and CPU usage. 2. Also add a switch "disable_rendering" to disable rendering. This is used to measure just the decoding part. On parrot, using test video: "test-25fps.h264" with target FPS: 60, the CPU rate is about 12% and no dropped was frames. With target FPS as 300, the CPU rate goes to 47.34% and 4/250 frames are dropped. BUG=250718 TEST=run the unittest on link and parrot Review URL: https://chromiumcodereview.appspot.com/19151002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215874 0039d316-1c4b-4281-b951-d872f2087c98
-
pneubeck@chromium.org authored
Also remove the conditional loading of certificates, which prevents tests including CertLoader. BUG=NONE R=stevenjb@chromium.org TBR=xiyuan@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=214351 Review URL: https://chromiumcodereview.appspot.com/20799002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215873 0039d316-1c4b-4281-b951-d872f2087c98
-
kinuko@chromium.org authored
(They should be eventually moved into content/public/test rather than duplicated in two gypi files) BUG=265769 R=jochen@chromium.org Review URL: https://codereview.chromium.org/22180002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215872 0039d316-1c4b-4281-b951-d872f2087c98
-
kinuko@chromium.org authored
BUG=257349 TEST=no behavioral change yet Review URL: https://chromiumcodereview.appspot.com/22363002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215871 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215869 0039d316-1c4b-4281-b951-d872f2087c98
-
danno@chromium.org authored
TBR=jkummerow@chromium.org Review URL: https://chromiumcodereview.appspot.com/22378002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215868 0039d316-1c4b-4281-b951-d872f2087c98
-
hidehiko@chromium.org authored
This CL extracts copy operation related to Drive from processCopyEntry_ to an utility method copyFileOnDrive. BUG=246976 TEST=Ran browser_tests --gtest_filter="*FileSystemExtensionApiTest*:*FileManagerBrowserTest*" and tested manually. Review URL: https://chromiumcodereview.appspot.com/22373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215867 0039d316-1c4b-4281-b951-d872f2087c98
-