summaryrefslogtreecommitdiffstats
path: root/content/worker
Commit message (Collapse)AuthorAgeFilesLines
* Enforce no more includes through DEPS. I also added DEPS checking for ↵jam@chromium.org2011-04-181-0/+2
| | | | | | | | | gpu/plugin/worker directories as well. I've moved the breakpad specific code out of content\renderer\renderer_main.cc into chrome\renderer\chrome_render_process_observer.cc. I've also moved the rest of the process-specific initialization from chrome_content_renderer_client.cc there as well, so that all the chrome renderer process init code is one place (some of it existed before chrome_render_process_observer.cc was created). Review URL: http://codereview.chromium.org/6884001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81979 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the last Chrome dependencies from renderer, and enforce no more ↵jam@chromium.org2011-04-181-1/+1
| | | | | | | | includes through DEPS. I also added DEPS checking for gpu/plugin/worker directories as well. I moved the Chrome specific browser tests to the chrome directory, and removed render_widget_unittest since it didn't seem to be testing much (there are tests that test it much more fully). I had to move bindings_policy.h, which ideally would be split into separate pieces so that the content layer only has to know about the content bindings. Given that it's basically an enum, I moved the whole file now since it's used in a lot of places, and the value of turning on DEPS checking is really high. Review URL: http://codereview.chromium.org/6874038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81924 0039d316-1c4b-4281-b951-d872f2087c98
* Mark WorkerFileSystemTest.ResolveURLHttpTests FLAKYcbentzel@chromium.org2011-03-311-4/+1
| | | | | | | | | | | | The test has failed multiple times on memcheck+tsan bots. The bug has been updated with examples. BUG=77442 TEST=None Review URL: http://codereview.chromium.org/6758022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79989 0039d316-1c4b-4281-b951-d872f2087c98
* Remove FLAKY prefix from WorkerFileSystemTest.ResolveURLHttpTests on Mac and ↵adamk@chromium.org2011-03-291-1/+4
| | | | | | | | | | | | | | | | | Linux. The underlying problem was fixed in fs-test-util.js in http://trac.webkit.org/changeset/82204. A different problem remains on Windows, which I've yet to track down. R=michaeln@chromium.org BUG=77442 TEST=try jobs Review URL: http://codereview.chromium.org/6708119 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79744 0039d316-1c4b-4281-b951-d872f2087c98
* Move some files from base to base/memory.levin@chromium.org2011-03-282-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | raw_scoped_refptr_mismatch_checker.h ref_counted.cc ref_counted.h ref_counted_memory.cc ref_counted_memory.h ref_counted_unittest.cc scoped_callback_factory.h scoped_comptr_win.h scoped_handle.h scoped_native_library.cc scoped_native_library.h scoped_native_library_unittest.cc scoped_nsobject.h scoped_open_process.h scoped_ptr.h scoped_ptr_unittest.cc scoped_temp_dir.cc scoped_temp_dir.h scoped_temp_dir_unittest.cc scoped_vector.h singleton.h singleton_objc.h singleton_unittest.cc linked_ptr.h linked_ptr_unittest.cc weak_ptr.cc weak_ptr.h weak_ptr_unittest.cc BUG=None TEST=Compile Review URL: http://codereview.chromium.org/6714032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79524 0039d316-1c4b-4281-b951-d872f2087c98
* WorkerFileSystemTest.ResolveURLHttpTests is FLAKYmichaeln@google.com2011-03-251-1/+2
| | | | | | | BUG=77422 TBR=adamk git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79450 0039d316-1c4b-4281-b951-d872f2087c98
* Remove deprecated overload of openFileSystem for workers.adamk@chromium.org2011-03-252-12/+0
| | | | | | | | | | See https://bugs.webkit.org/show_bug.cgi?id=57062 for the WebKit side of this change, but note that the changes are safe to submit in any order. Review URL: http://codereview.chromium.org/6736012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79435 0039d316-1c4b-4281-b951-d872f2087c98
* Run the Worker tests for resolveLocalFileSystemURL that were addedadamk@chromium.org2011-03-251-0/+39
| | | | | | | | | | | | | in http://trac.webkit.org/changeset/81640. Includes updates to the testing framework to mirror the way NRWT runs HTTP tests. R=michaeln@chromium.org Review URL: http://codereview.chromium.org/6727001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79434 0039d316-1c4b-4281-b951-d872f2087c98
* If --disable-webgl is passed, continue to return null fromkbr@chromium.org2011-03-231-4/+0
| | | | | | | | | | | | | | | | | | Canvas.getContext("webgl"), but leave WebGLRenderingContext and related properties on the DOMWindow. Blacklisting of certain GPUs is resulting in reports that the browser doesn't support WebGL, when in reality only the graphics card doesn't. An upstream WebKit patch will follow this one removing the WebGL switch from WebRuntimeFeatures and removing the EnabledAtRuntime extended attribute from these properties. BUG=77110 TEST=none (verified manually) R=tony@chromium.org,darin@chromium.org,arv@chromium.org Review URL: http://codereview.chromium.org/6705015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79160 0039d316-1c4b-4281-b951-d872f2087c98
* Plumbing to support loading from the "most appropriate" appcache.michaeln@google.com2011-03-212-7/+29
| | | | | | | BUG=68479 Review URL: http://codereview.chromium.org/6667057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78934 0039d316-1c4b-4281-b951-d872f2087c98
* Mark WorkerTest.WorkerNavigator as flaky.ericu@google.com2011-03-161-1/+2
| | | | | | | | | TEST=none BUG=76426 Review URL: http://codereview.chromium.org/6677084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78413 0039d316-1c4b-4281-b951-d872f2087c98
* Make ContentBrowserClient not be owned by ContentClient, so that the latter ↵jam@chromium.org2011-03-151-1/+1
| | | | | | | | doesn't have to include a header from the former. Also tighten up DEPS checking so that we ensure that content\common doesn't depend on any other content directory. Review URL: http://codereview.chromium.org/6695029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78273 0039d316-1c4b-4281-b951-d872f2087c98
* Move worker code from chrome\worker to content\worker.jam@chromium.org2011-03-1417-0/+2086
TBR=atwilson Review URL: http://codereview.chromium.org/6691004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78039 0039d316-1c4b-4281-b951-d872f2087c98