summaryrefslogtreecommitdiffstats
path: root/webkit
Commit message (Collapse)AuthorAgeFilesLines
* Change media galleries to external file system type to add toURL supportvandebo@chromium.org2014-03-281-4/+6
| | | | | | | | | BUG=160900 R=creis@chromium.org, joi@chromium.org, thestig@chromium.org, tsepez@chromium.org, tzik@chromium.org Review URL: https://codereview.chromium.org/185393012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@260276 0039d316-1c4b-4281-b951-d872f2087c98
* Remove PlatformFile from database/vfs_backendrvargas@chromium.org2014-03-282-42/+31
| | | | | | | | BUG=322664 Review URL: https://codereview.chromium.org/207123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@260054 0039d316-1c4b-4281-b951-d872f2087c98
* [fsp] Introduce file_system_provider::Service class for the ↵mtomasz@chromium.org2014-03-273-0/+6
| | | | | | | | | | | | | | | | | | | FileSystemProvider API. This patch introduces a service which manages file systems provided by third party extensions. The class has two methods: registerFileSystem() and unregisterFileSystem() which are supposed to be called from chrome.fileSystemProvider.* api methods. The service stores a map of the registered file systems, mounts them, and notifies observers (VolumeManager) about the fact. The file system backend does not handle the new file system type yet, this will be done separately. TEST=browser_test, unit_tests: *FileSystemProvider* BUG=248427 Review URL: https://codereview.chromium.org/192573002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259820 0039d316-1c4b-4281-b951-d872f2087c98
* Add more UMA stats for AppCacheUpdateJob results and for response retrieval.michaeln@chromium.org2014-03-278-37/+155
| | | | | | | | BUG=343620 Review URL: https://codereview.chromium.org/207163002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259792 0039d316-1c4b-4281-b951-d872f2087c98
* Remove PlatformFile from file_system_usage_cachervargas@chromium.org2014-03-262-40/+30
| | | | | | | | BUG=322664 Review URL: https://codereview.chromium.org/207213002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259723 0039d316-1c4b-4281-b951-d872f2087c98
* Remove PlatforFile from fileapi/native_file_utilrvargas@chromium.org2014-03-265-62/+61
| | | | | | | | BUG=322664 Review URL: https://codereview.chromium.org/206783004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259540 0039d316-1c4b-4281-b951-d872f2087c98
* Merge weburlrequest_extradata_impl.cc/h into ↵pilgrim@chromium.org2014-03-253-67/+0
| | | | | | | | | | | | | content/child/request_extra_data.cc/h (attempt #2) patch from issue 182383015, with changes to plugin_url_fetcher.cc, resource_dispatcher_unittest.cc, and render_frame_impl.cc to create RequestExtraData object on stack instead of with new BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/203853003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259340 0039d316-1c4b-4281-b951-d872f2087c98
* Move webkit/child/touch_fling_gesture_curve to content/child/pilgrim@chromium.org2014-03-254-291/+0
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/197213017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259281 0039d316-1c4b-4281-b951-d872f2087c98
* Use of validating IPC enum macros for quota messagesanish.p@samsung.com2014-03-251-0/+1
| | | | | | | | | | | This is part of long-running background task to remove remaining uses of the unchecked IPC_ENUM_TRAITS() macro BUG=246708 Review URL: https://codereview.chromium.org/203073003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259170 0039d316-1c4b-4281-b951-d872f2087c98
* plumbing fills_bounds_completely from aura to content_layer_updaterluken@chromium.org2014-03-252-0/+3
| | | | | | | | BUG=313494 Review URL: https://codereview.chromium.org/191453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259160 0039d316-1c4b-4281-b951-d872f2087c98
* Stop using net::FileStream synchronously in native_file_util.cchashimoto@chromium.org2014-03-241-11/+10
| | | | | | | | | | | Use base::File instead. BUG=351823 TEST=content_unittests Review URL: https://codereview.chromium.org/196103012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258903 0039d316-1c4b-4281-b951-d872f2087c98
* Extract RequestInfo struct from ResourceLoaderBridge.tfarina@chromium.org2014-03-242-88/+0
| | | | | | | | | | | | | | | | And move it into content/child/request_info.*. As requested by John in - https://codereview.chromium.org/186193005/diff/1/content/public/child/resource_loader_bridge.h#newcode46 BUG=265753, 338338, 237249 TEST=content_unittests R=jam@chromium.org TBR=darin Review URL: https://codereview.chromium.org/207603003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258845 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of Revert of Add mechanism to auto mount file systems in response to ↵vandebo@chromium.org2014-03-209-14/+113
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a URL request. (https://codereview.chromium.org/206253002/) Reason for revert: This revert did not fix the breakage it was suspected of. Original issue's description: > Revert of Add mechanism to auto mount file systems in response to a URL request. (https://codereview.chromium.org/195923002/) > > Reason for revert: > Best guess that this broke > SyncFileSystemApiTest.WriteFileThenGetUsage > SyncFileSystemApiTest.GetFileStatuses > MediaGalleriesPlatformAppBrowserTest.MediaGalleriesCopyTo > on XP Tests(1). > > Original issue's description: > > Add mechanism to auto mount file systems in response to a URL request. > > > > This code adds a hook for when a file system URL request can not be cracked. > > It will allow external media galleries file systems to be lazily created. > > > > BUG=160900 > > > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=258064 > > TBR=kinuko@chromium.org,tzik@chromium.org,joi@chromium.org,sky@chromium.org,vandebo@chromium.org > NOTREECHECKS=true > NOTRY=true > BUG=160900 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=258261 TBR=kinuko@chromium.org,tzik@chromium.org,joi@chromium.org,sky@chromium.org,pneubeck@chromium.org BUG=160900 Review URL: https://codereview.chromium.org/199903003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258440 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of Add mechanism to auto mount file systems in response to a URL ↵pneubeck@chromium.org2014-03-209-113/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | request. (https://codereview.chromium.org/195923002/) Reason for revert: Best guess that this broke SyncFileSystemApiTest.WriteFileThenGetUsage SyncFileSystemApiTest.GetFileStatuses MediaGalleriesPlatformAppBrowserTest.MediaGalleriesCopyTo on XP Tests(1). Original issue's description: > Add mechanism to auto mount file systems in response to a URL request. > > This code adds a hook for when a file system URL request can not be cracked. > It will allow external media galleries file systems to be lazily created. > > BUG=160900 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=258064 TBR=kinuko@chromium.org,tzik@chromium.org,joi@chromium.org,sky@chromium.org,vandebo@chromium.org NOTREECHECKS=true NOTRY=true BUG=160900 Review URL: https://codereview.chromium.org/206253002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258261 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of Revert of Add a parameter to FileStreamWriter::CreateForLocalFile ↵pneubeck@chromium.org2014-03-206-11/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to allow creating new (https://codereview.chromium.org/206073006/) Reason for revert: Sorry, I looked through this CL in more detail and it seems that it doesn't change any behavior. Re-reverting this one and instead trying crrev.com/258064 Original issue's description: > Revert of Add a parameter to FileStreamWriter::CreateForLocalFile to allow creating new (https://codereview.chromium.org/197233008/) > > Reason for revert: > Best guess that this broke > SyncFileSystemApiTest.WriteFileThenGetUsage > on XP Tests(1). > > http://build.chromium.org/p/chromium.win/builders/XP%20Tests%20%281%29/builds/30601/steps/browser_tests/logs/WriteFileThenGetUsage > > If not, we can just re-revert or reland it after a few cycles. > > Original issue's description: > > Add a parameter to FileStreamWriter::CreateForLocalFile to allow creating new files as well as writing to existing files. > > See https://codereview.chromium.org/18023022/ for context; this is needed by upcoming IDB Blob support. > > > > Tzik, please do primary review for filesystem; Kinaba, please review as ChromeOS owner. > > > > BUG=108012 > > R=kinaba,tzik > > > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=258120 > > TBR=kinaba@chromium.org,tzik@chromium.org,ericu@chromium.org > NOTREECHECKS=true > NOTRY=true > BUG=108012 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=258256 TBR=kinaba@chromium.org,tzik@chromium.org,ericu@chromium.org NOTREECHECKS=true NOTRY=true BUG=108012 Review URL: https://codereview.chromium.org/206083004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258259 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of Add a parameter to FileStreamWriter::CreateForLocalFile to allow ↵pneubeck@chromium.org2014-03-206-40/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | creating new (https://codereview.chromium.org/197233008/) Reason for revert: Best guess that this broke SyncFileSystemApiTest.WriteFileThenGetUsage on XP Tests(1). http://build.chromium.org/p/chromium.win/builders/XP%20Tests%20%281%29/builds/30601/steps/browser_tests/logs/WriteFileThenGetUsage If not, we can just re-revert or reland it after a few cycles. Original issue's description: > Add a parameter to FileStreamWriter::CreateForLocalFile to allow creating new files as well as writing to existing files. > See https://codereview.chromium.org/18023022/ for context; this is needed by upcoming IDB Blob support. > > Tzik, please do primary review for filesystem; Kinaba, please review as ChromeOS owner. > > BUG=108012 > R=kinaba,tzik > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=258120 TBR=kinaba@chromium.org,tzik@chromium.org,ericu@chromium.org NOTREECHECKS=true NOTRY=true BUG=108012 Review URL: https://codereview.chromium.org/206073006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258256 0039d316-1c4b-4281-b951-d872f2087c98
* Move webcursors code from webkit/ to content.tfarina@chromium.org2014-03-2014-2135/+0
| | | | | | | | | | | BUG=265753, 338338, 237249 TEST=content_unittests R=jam@chromium.org, torne@chromium.org TBR=darin Review URL: https://codereview.chromium.org/201473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258169 0039d316-1c4b-4281-b951-d872f2087c98
* Add a parameter to FileStreamWriter::CreateForLocalFile to allow creating ↵ericu@chromium.org2014-03-196-11/+40
| | | | | | | | | | | | | | | new files as well as writing to existing files. See https://codereview.chromium.org/18023022/ for context; this is needed by upcoming IDB Blob support. Tzik, please do primary review for filesystem; Kinaba, please review as ChromeOS owner. BUG=108012 R=kinaba,tzik Review URL: https://codereview.chromium.org/197233008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258120 0039d316-1c4b-4281-b951-d872f2087c98
* Add mechanism to auto mount file systems in response to a URL request.vandebo@chromium.org2014-03-199-14/+113
| | | | | | | | | | | This code adds a hook for when a file system URL request can not be cracked. It will allow external media galleries file systems to be lazily created. BUG=160900 Review URL: https://codereview.chromium.org/195923002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258064 0039d316-1c4b-4281-b951-d872f2087c98
* Do null check when setting ScrollClipLayerqinmin@chromium.org2014-03-191-3/+5
| | | | | | | | | | | | | | | WebLayerImpl::setScrollClipLayer() doesn't seem to handle null case correctly on the layer we passed in. It calls cc_clip_layer->id() even if cc_clip_layer is set to null. We want to pass a null clipping layer to stop the layer from scrolling for the RenderFullscreen, as suggested by aelias in https://codereview.chromium.org/200943002/ BUG=352183 Review URL: https://codereview.chromium.org/196573035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257926 0039d316-1c4b-4281-b951-d872f2087c98
* Fix "unreachable code" warnings (MSVC warning 4702), misc. edition.pkasting@chromium.org2014-03-181-15/+4
| | | | | | | | | | | | This CL covers top-level directories that only had one or two modified files. BUG=346399 TEST=none R=darin@chromium.org Review URL: https://codereview.chromium.org/203043002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257705 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 257655 "Merge weburlrequest_extradata_impl.cc/h into cont..."yzshen@chromium.org2014-03-183-0/+67
| | | | | | | | | | | | | | | > Merge weburlrequest_extradata_impl.cc/h into content/child/request_extra_data.cc/h. Change to empty constructor and use individual setters for each value. > > BUG=338338 > TBR=darin@chromium.org > > Review URL: https://codereview.chromium.org/182383015 TBR=pilgrim@chromium.org Review URL: https://codereview.chromium.org/203693002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257671 0039d316-1c4b-4281-b951-d872f2087c98
* Move view_appcache_internals_job to content/browser/appcache/pilgrim@chromium.org2014-03-183-707/+0
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/181433005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257656 0039d316-1c4b-4281-b951-d872f2087c98
* Merge weburlrequest_extradata_impl.cc/h into ↵pilgrim@chromium.org2014-03-183-67/+0
| | | | | | | | | | | content/child/request_extra_data.cc/h. Change to empty constructor and use individual setters for each value. BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/182383015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257655 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 257524 "Move IsStringASCII/UTF8 to base namespace."brettw@chromium.org2014-03-171-1/+1
| | | | | | | | | | | | | | | | > Move IsStringASCII/UTF8 to base namespace. > > Use StringPiece for IsStringUTF8. > > TBR=sky > > Review URL: https://codereview.chromium.org/196793010 TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/198163004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257533 0039d316-1c4b-4281-b951-d872f2087c98
* Move IsStringASCII/UTF8 to base namespace.brettw@chromium.org2014-03-171-1/+1
| | | | | | | | | | Use StringPiece for IsStringUTF8. TBR=sky Review URL: https://codereview.chromium.org/196793010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257524 0039d316-1c4b-4281-b951-d872f2087c98
* Move ftp_directory_listing_response_delegate.cc/h to content/child/pilgrim@chromium.org2014-03-173-179/+0
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/183683019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257471 0039d316-1c4b-4281-b951-d872f2087c98
* Declare dependency on blink_headers in targets that use blink headersjamesr@chromium.org2014-03-161-0/+4
| | | | | | | | | | | | | | This updates targets that use blink public API headers to depend on the blink_headers target, which sets up include paths so the headers can function without needing relative path hacks. Targets that expose #includes of public blink headers export the dependent settings from blink_headers to their dependents. BUG=350097 Review URL: https://codereview.chromium.org/189713002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257357 0039d316-1c4b-4281-b951-d872f2087c98
* Move UTF16ToASCII, remove WideToASCII.brettw@chromium.org2014-03-141-2/+2
| | | | | | | | | | | | | | | | This removes WideToASCII and changes all callers to use UTF16ToASCII instead. Moves UTF16ToASCII from base/strings/string_util.h to base/strings/utf_string_conversions.h and into the base namespace. Convert a few related string_util functions to take a StringPiece16 instead of a string16. Remove IsStringASCII(std::wstring) which was unused. Updates callers' includes and namespace usage accordingly. TBR=sky Review URL: https://codereview.chromium.org/176843022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257200 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 1847dxie@chromium.org2014-03-1352-417/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256946 0039d316-1c4b-4281-b951-d872f2087c98
* Remove BrowserContext::PurgeMemory(). The MemoryPurger is gone.pkasting@chromium.org2014-03-139-56/+25
| | | | | | | | | | BUG=350455 TEST=none R=jam@chromium.org, michaeln@chromium.org Review URL: https://codereview.chromium.org/194053002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256883 0039d316-1c4b-4281-b951-d872f2087c98
* Remove --enable-memory-info flagmnaganov@chromium.org2014-03-132-2/+0
| | | | | | | | | | | | | | Chrome exposes quantized rate-limited information about memory through 'window.performance.memory'. This should be enough for the majority of web developers. Developers who need more detailed data can use tools like Telemetry to obtain JS heap size status via DevTools remote debugging protocol. BUG=350339 TBR=palmer@chromium.org Review URL: https://codereview.chromium.org/192653002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256807 0039d316-1c4b-4281-b951-d872f2087c98
* Move ui.gyp into ui/base/ directory.tfarina@chromium.org2014-03-132-2/+1
| | | | | | | | | | | | | | | | This follows the rule we setup for //ui which states that each subdir should be its own component with its own gyp file that lives in its subdir. The 'ui' target was renamed to ui_base to match the convention. BUG=299841 TEST=gyp files. TBR=ben@chromium.org Review URL: https://codereview.chromium.org/198333004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256788 0039d316-1c4b-4281-b951-d872f2087c98
* Allow the content browser client to specify a special cookie store to betburkard@chromium.org2014-03-124-8/+12
| | | | | | | | | | | | | | | used for a given render process id. This special cookie store will then be used for renderer messages pertaining to cookies, url fetches in net, and websockets. If the special cookie store is NULL, a default cookie store will be used. Re-submit of https://codereview.chromium.org/188693003 See https://codereview.chromium.org/188693003 for reviewers/lgtm's. Review URL: https://codereview.chromium.org/197043005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256657 0039d316-1c4b-4281-b951-d872f2087c98
* Use has_more parameter to return entries from AsyncFileUtilAdapterhashimoto@chromium.org2014-03-121-46/+50
| | | | | | | | | | | BUG=347900 TEST=git cl try Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=256217 Review URL: https://codereview.chromium.org/194233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256627 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 256579 "Allow the content browser client to specify a spe..."peter@chromium.org2014-03-124-12/+8
| | | | | | | | | | | | | | | | | | | | | | | This broke the Android builders. The try-bots on the CL did point out the compile errors, but it was committed manually anyway. Logs: http://build.chromium.org/p/chromium.linux/builders/Android%20Clang%20Builder%20%28dbg%29/builds/30977/steps/compile/logs/stdio > Allow the content browser client to specify a special cookie store to be > used for a given render process id. This special cookie store will then > be used for renderer messages pertaining to cookies, url fetches in net, > and websockets. If the special cookie store is NULL, a default cookie store > will be used. > > R=erikwright@chromium.org, jam@chromium.org, lambroslambrou@chromium.org, mmenke@chromium.org, tyoshino@chromium.org > > Review URL: https://codereview.chromium.org/188693003 TBR=tburkard@chromium.org Review URL: https://codereview.chromium.org/197463003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256583 0039d316-1c4b-4281-b951-d872f2087c98
* Allow the content browser client to specify a special cookie store to betburkard@chromium.org2014-03-124-8/+12
| | | | | | | | | | | | | used for a given render process id. This special cookie store will then be used for renderer messages pertaining to cookies, url fetches in net, and websockets. If the special cookie store is NULL, a default cookie store will be used. R=erikwright@chromium.org, jam@chromium.org, lambroslambrou@chromium.org, mmenke@chromium.org, tyoshino@chromium.org Review URL: https://codereview.chromium.org/188693003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256579 0039d316-1c4b-4281-b951-d872f2087c98
* Remove ContainsOnlyWhitespace from string_util and CollapseWhitespace into ↵brettw@chromium.org2014-03-111-1/+1
| | | | | | | | | | | | | | | | | to the base namespace This function is only used in a few places and can trivially be implemented by passing the whitespace constant to the existing ContainsOnlyChars function. This changes the ContainsOnlyChars function signature to take a StringPiece to avoid a copy from a literal to a standard string in the above-mentioned use-base. Re-implement ContainsOnlyChars to use the find_first_not_of function on StringPiece. BUG= R=viettrungluu@chromium.org Review URL: https://codereview.chromium.org/183683024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256354 0039d316-1c4b-4281-b951-d872f2087c98
* Add a GPU rasterization hint to cc::PictureLayerajuma@chromium.org2014-03-112-0/+8
| | | | | | | | | | | | | | This adds a GPU rasterization hint to PictureLayer and PictureLayerImpl. When using hybrid rasterization (that is, when running with --enable-gpu-rasterization), only layers with a GPU rasterization hint are rasterized on the GPU. BUG=329722 Review URL: https://codereview.chromium.org/192973002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256304 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of Use has_more parameter to return entries from AsyncFileUtilAdapter ↵arv@chromium.org2014-03-111-50/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | (https://codereview.chromium.org/194233002/) Reason for revert: Broke LayoutTest/fast/filesystem/workers/read-directory-sync-many.html FAIL [Worker] numFiles should be 150. Was 100. FAIL [Worker] numDirectories should be 150. Was 0. Original issue's description: > Use has_more parameter to return entries from AsyncFileUtilAdapter > > BUG=347900 > TEST=git cl try > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=256217 TBR=tzik@chromium.org,hashimoto@chromium.org NOTREECHECKS=true NOTRY=true BUG=347900 Review URL: https://codereview.chromium.org/195323002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256251 0039d316-1c4b-4281-b951-d872f2087c98
* Move resource_request_body.cc/h to content/common/pilgrim@chromium.org2014-03-114-114/+7
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/176993014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256248 0039d316-1c4b-4281-b951-d872f2087c98
* Use has_more parameter to return entries from AsyncFileUtilAdapterhashimoto@chromium.org2014-03-111-46/+50
| | | | | | | | | BUG=347900 TEST=git cl try Review URL: https://codereview.chromium.org/194233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256217 0039d316-1c4b-4281-b951-d872f2087c98
* Add ResourceType::IsServiceWorker(type)kinuko@chromium.org2014-03-111-0/+4
| | | | | | | | BUG=285976 Review URL: https://codereview.chromium.org/192663002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256212 0039d316-1c4b-4281-b951-d872f2087c98
* Move user_agent code from webkit/ to content/.tfarina@chromium.org2014-03-117-487/+0
| | | | | | | | | | | BUG=265753, 338338, 237249 TEST=content_unittests R=jam@chromium.org TBR=darin Review URL: https://codereview.chromium.org/186883002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256174 0039d316-1c4b-4281-b951-d872f2087c98
* Define a --force-gpu-rasterization flagajuma@chromium.org2014-03-112-9/+9
| | | | | | | | | | | | | | | This flag forces gpu rasterization for all layers (that is, it behaves the way --enable-gpu-rasterization behaved previously). --enable-gpu-rasterization now enables gpu rasterization only on layers that have a GPU rasterization hint. Since this hint will be added in a later CL, this flag is currently a no-op. BUG=329722 Review URL: https://codereview.chromium.org/189883009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256143 0039d316-1c4b-4281-b951-d872f2087c98
* Move webkit_child_helpers to content/child/pilgrim@chromium.org2014-03-113-76/+0
| | | | | | | | | BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/185553017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256088 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: have common HttpResponseHeaders routine to update with rangekinuko@chromium.org2014-03-101-16/+3
| | | | | | | | | | | | | | Currently we do this header-fixup in two places: PartialData and AppCache, and I'm planning to do the very same header-fixup in yet another module, ServiceWorker. I want to have a common utility in net/http/http_util to do this so that all 3 modules can share it. BUG=349319 TEST=HttpResponseHeadersTest.UpdateWithNewRange Review URL: https://codereview.chromium.org/187583002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255905 0039d316-1c4b-4281-b951-d872f2087c98
* Remove wall time from NotifyAnimationStarted and NotifyAnimationFinished.mithro@mithis.com2014-03-102-4/+0
| | | | | | | | | | | | With the change to Blink only needing the monotonic time the wall time can be removed. DEPS=185633002,185643002 BUG=299945 Review URL: https://codereview.chromium.org/184433007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255888 0039d316-1c4b-4281-b951-d872f2087c98
* Simplify the user agent code some more since after r255534 it's not affected ↵jam@chromium.org2014-03-103-103/+0
| | | | | | | | | | | | | | | by the site's URL. Code in content always gets it now from ContentClient::GetUserAgent. In Chrome, there's a GetUserAgent function which returns it. BUG=338338 R=isherman@chromium.org, pauljensen@chromium.org, scottmg@chromium.org, tfarina@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=255858 Review URL: https://codereview.chromium.org/191093002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255877 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 255858 "Simplify the user agent code some more since afte..."jam@chromium.org2014-03-093-0/+103
| | | | | | | | | | | | | | | | | | | There are some browser_tests failures on the buildbots that don't reproduce locally. Reverting while I investigate. > Simplify the user agent code some more since after r255534 it's not affected by the site's URL. > > Code in content always gets it now from ContentClient::GetUserAgent. In Chrome, there's a GetUserAgent function which returns it. > > BUG=338338 > R=isherman@chromium.org, pauljensen@chromium.org, scottmg@chromium.org, tfarina@chromium.org > > Review URL: https://codereview.chromium.org/191093002 TBR=jam@chromium.org Review URL: https://codereview.chromium.org/192283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255867 0039d316-1c4b-4281-b951-d872f2087c98