summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Don't build glue as Objective-C++ now that PLATFORM_MAC is off. Re-sniff gluemark@chromium.org2008-10-234-18/+17
| | | | | | | in all.xcodeproj. Review URL: http://codereview.chromium.org/7901 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3800 0039d316-1c4b-4281-b951-d872f2087c98
* Cut'n'paste enough of the real test shell to fix some more errors.evanm@google.com2008-10-231-0/+88
| | | | | | | | | Note that style errors are due to upstream, not me. Review URL: http://codereview.chromium.org/7903 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3799 0039d316-1c4b-4281-b951-d872f2087c98
* Update third_party/WebKit revision to include fixes of split window.fqian@google.com2008-10-221-1/+1
| | | | | | | | TBR = ojan Review URL: http://codereview.chromium.org/7902 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3798 0039d316-1c4b-4281-b951-d872f2087c98
* Change a dependency from clipboard_util.h to the more cross-platform clipboard.hestade@chromium.org2008-10-221-2/+2
| | | | | | Review URL: http://codereview.chromium.org/7884 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3797 0039d316-1c4b-4281-b951-d872f2087c98
* Remove DerivedSources.cpp from KJSBindings.vcproj, and replace it with all ↵pkasting@chromium.org2008-10-222-110/+1163
| | | | | | | | | the individual Derived Sources. This lets me remove the Database, Storage and SQL-related files, which in turn trims down the number of additions to TemporaryLinkStubs.cpp. I also added a couple missing .h files, not that it makes a real difference. (I believe these are also missing upstream.) Review URL: http://codereview.chromium.org/7896 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3796 0039d316-1c4b-4281-b951-d872f2087c98
* Take PLATFORM_MAC stuff out of editor_client_implmark@chromium.org2008-10-222-25/+0
| | | | | | Review URL: http://codereview.chromium.org/8084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3795 0039d316-1c4b-4281-b951-d872f2087c98
* - Lots of removed whitespace at the end of the lineerg@google.com2008-10-228-93/+127
| | | | | | | | | | | - ifdef out windows specific calls - fix simple compiler warnings Review URL: http://codereview.chromium.org/7886 Patch from icefox. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3794 0039d316-1c4b-4281-b951-d872f2087c98
* Create a thread-safe observer list. Will be usedmbelshe@google.com2008-10-225-6/+413
| | | | | | | | | by SystemMonitor. Right now the class requires that Observers be RefCounted<>. This is because we invoke tasks via NewRunnableMethod for them. However, because we manually track lifecycle via AddObserver/RemoveObserver, we could override the RunnableMethodTraits to not require RefCounted<>. This would have the advantage that callers do not need to make all Observers be RefCounted, but makes it more critical that observers not forget to call RemoveObserver(). Review URL: http://codereview.chromium.org/7353 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3787 0039d316-1c4b-4281-b951-d872f2087c98
* Build libxslt on the Mac. This seems to be needed while disablingmark@chromium.org2008-10-224-5/+594
| | | | | | | PLATFORM(MAC). Review URL: http://codereview.chromium.org/7893 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3786 0039d316-1c4b-4281-b951-d872f2087c98
* Second part of split window support in the binding part.fqian@google.com2008-10-229-263/+353
| | | | | | | | | | | | | | | | | | | | | | The major change is that when a frame is loading a new page, the frame loader calls V8Proxy::clearWindowShell when it receives the first piece of data. At that point, the global object is detached from its current context. FrameLoader continues on preparing new environment, including creating new DOMWindow and security origin for the frame. When new DOMWindow is ready, the frame loader calls ScriptController::notifyNewDOMWindowReady(), which uses the existing global object to initialize the new context for the frame. Between detaching global from old context and creating new context using global, there should no JavaScript executed. The implication is that if the new page does not use JavaScript, its JS context is still created. But the overhead should be very small because V8 is warmed up already. Review URL: http://codereview.chromium.org/7838 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3785 0039d316-1c4b-4281-b951-d872f2087c98
* Plugin changes to make JSC build work.ojan@google.com2008-10-223-1/+12
| | | | | | Review URL: http://codereview.chromium.org/7883 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3783 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline two tests. Apparently we use classic style controlstc@google.com2008-10-225-5/+2
| | | | | | | | in the pixel tests. These two tests have buttons with focus so we now have dotted line focus rects on them. Review URL: http://codereview.chromium.org/8077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3782 0039d316-1c4b-4281-b951-d872f2087c98
* Use ETS_FOCUSED instead of TS_CHECKED to signify that a buttontc@google.com2008-10-222-2/+2
| | | | | | | | is focused. They both happen to have the same value, but this is much clearer. Review URL: http://codereview.chromium.org/7888 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3781 0039d316-1c4b-4281-b951-d872f2087c98
* Change the default http stack for chrome.exe from winhttp to the new one.ericroman@google.com2008-10-223-6/+5
| | | | | | | | http://code.google.com/p/chromium/issues/detail?id=2645 Review URL: http://codereview.chromium.org/7876 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3776 0039d316-1c4b-4281-b951-d872f2087c98
* Mark tests as failing while I fix.tc@google.com2008-10-221-0/+4
| | | | | | | TBR=ojan Review URL: http://codereview.chromium.org/8076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3773 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Linux build bustagemark@chromium.org2008-10-221-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3771 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce header dependencies.evanm@google.com2008-10-227-28/+51
| | | | | | | | | Random files in V8Bindings were getting rebuilt when I touched process_util.h. I tracked it down to stats_table.h and shared_memory.h. This change cuts down some dependencies there; more could be removed if we made some of our FooHandle typedefs into abstract data types instead. Review URL: http://codereview.chromium.org/7307 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3770 0039d316-1c4b-4281-b951-d872f2087c98
* More fixes for port. Don't build GKURLMac since we hopefully won't needmark@chromium.org2008-10-225-72/+71
| | | | | | | | | NSURL<->GKURL conversions any longer. Make a couple changes to DragData just to get it to build, since we don't care about drag and drop right now. Provide key codes for the Mac based on Apple's 1992 docs on the subject. Review URL: http://codereview.chromium.org/8070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3769 0039d316-1c4b-4281-b951-d872f2087c98
* Defer the HttpNetworkSession initialization to first time CreateTransaction ↵ericroman@google.com2008-10-222-6/+13
| | | | | | | | | | is called. http://code.google.com/p/chromium/issues/detail?id=3639 Review URL: http://codereview.chromium.org/7854 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3767 0039d316-1c4b-4281-b951-d872f2087c98
* Create a stub implementation for RenderTheme for Linux.erg@google.com2008-10-222-0/+55
| | | | | | | Review URL: http://codereview.chromium.org/7880 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3766 0039d316-1c4b-4281-b951-d872f2087c98
* Changes to how we draw buttons.tc@google.com2008-10-222-8/+17
| | | | | | | | | | | | | 1) Change RenderThemeWin.cpp so that pressed buttons have priority over focused buttons. I.e., if a button is focused and pressed, we should draw it pressed. 2) In classic mode, add the black border for focused buttons and properly add the dotted focus rect. http://crbug.com/135 Review URL: http://codereview.chromium.org/8071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3763 0039d316-1c4b-4281-b951-d872f2087c98
* Make String Conversion Unittest x-platform + fix a small bug the tests exposed.jeremy@chromium.org2008-10-225-11/+19
| | | | | | Review URL: http://codereview.chromium.org/8067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3760 0039d316-1c4b-4281-b951-d872f2087c98
* Make the character encoding override work again. There are two other bugs ↵jungshik@google.com2008-10-227-22/+37
| | | | | | | | | | with character encoding override, but it seems that it's better to fix them separately. BUG=3315 Review URL: http://codereview.chromium.org/7647 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3759 0039d316-1c4b-4281-b951-d872f2087c98
* Add a net error code for not implemented.ericroman@google.com2008-10-222-2/+5
| | | | | | Review URL: http://codereview.chromium.org/7855 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3758 0039d316-1c4b-4281-b951-d872f2087c98
* Rebase a layout test to match GURL's canonicalization (mostly trailing slashes).ericroman@google.com2008-10-222-1/+38
| | | | | | Review URL: http://codereview.chromium.org/8049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3757 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline a layout-test for v8.ericroman@google.com2008-10-222-1/+3
| | | | | | | | | | The purpose of this layout test is to verify that certain malformed JS attribute doesn't cause crash. V8 passes. The outputs differ because v8 additionally throws a syntaxerror exception. Review URL: http://codereview.chromium.org/7861 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3756 0039d316-1c4b-4281-b951-d872f2087c98
* try to fix dist crashesben@chromium.org2008-10-221-0/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3755 0039d316-1c4b-4281-b951-d872f2087c98
* Apply the already-reviewed <http://codereview.chromium.org/2936> by ↵glen@google.com2008-10-223-0/+10
| | | | | | | | | | | | | developer0420. I updated it to always have reload enabled, as you sometimes want to reload while a page is loading. BUG=204 TBR=ben Review URL: http://codereview.chromium.org/8016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3754 0039d316-1c4b-4281-b951-d872f2087c98
* This is a patch for bug 1385045: Adobe Acrobat 9.0 crash.nsylvain@chromium.org2008-10-225-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adobe Acrobat 9.0 loads a dll called bib.dll. Usually it unloads it 30 seconds after the last instance of the plugin goes away, or when the browser process goes away. To know if the browser process goes away, it subclasses the main browser window. It seems to work fine in firefox, but it does not work in chrome. Also the 30 seconds delay does not work because we close the plugin process too fast (10 seconds) after the last instance of the plugin is closed. bib.dll is then unloaded by ExitProcess, which causes a crash in bib.dll. We could wait ~35 seconds after the last instance before closing the process, but it might be problematic with upgrades and could result in plugin process outliving the brower process. This current patch just kills the process before ExitProcess, so it does not cause a crash and display an error message to the user. This is not a fix, this is just a usuability improvement. As far as I know we are still waiting for help from the Adobe team on this issue. They would need to find a way to unload bib.dll cleanly in chrome. BUG: 1385045 Review URL: http://codereview.chromium.org/8015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3753 0039d316-1c4b-4281-b951-d872f2087c98
* Compile ImageSkia under Linux.erg@google.com2008-10-222-36/+17
| | | | | | | Review URL: http://codereview.chromium.org/8048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3752 0039d316-1c4b-4281-b951-d872f2087c98
* Port SSLClientSocket to Linuxdkegel@google.com2008-10-2213-53/+1291
| | | | | | | | | | | | | | | | Passes tests (once you enable them by removing DISABLED_). Probably want to add a mock https server so we can leave those tests enabled when we check in. Had to add full duplex support to TCPClientSocket on Linux to avoid kludgy plumbing issues. Also had to add dummy implementation of X509Certificate::~X509Certificate to prevent link error. Rediffed to current trunk, addressed all review issues. Review URL: http://codereview.chromium.org/4049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3751 0039d316-1c4b-4281-b951-d872f2087c98
* Get PopupMenuChromium building under Linuxagl@chromium.org2008-10-222-5/+7
| | | | | | | Review URL: http://codereview.chromium.org/7875 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3750 0039d316-1c4b-4281-b951-d872f2087c98
* Update test list to match the state of the builders.ojan@google.com2008-10-221-2/+1
| | | | | | Review URL: http://codereview.chromium.org/8064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3749 0039d316-1c4b-4281-b951-d872f2087c98
* Some of the easier fixes in port for the PLATFORM(MAC) killing projectmark@chromium.org2008-10-225-144/+8
| | | | | | Review URL: http://codereview.chromium.org/7874 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3747 0039d316-1c4b-4281-b951-d872f2087c98
* Glue changes for our PLATFORM(MAC) killing projectmark@chromium.org2008-10-222-37/+0
| | | | | | Review URL: http://codereview.chromium.org/8060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3746 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Linux build with a null port hack.evanm@google.com2008-10-221-1/+4
| | | | | | | Review URL: http://codereview.chromium.org/7873 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3744 0039d316-1c4b-4281-b951-d872f2087c98
* oops, didn't mean PLATFORM.pinkerton@google.com2008-10-221-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3742 0039d316-1c4b-4281-b951-d872f2087c98
* rolling webkit deps for platform(mac) changespinkerton@google.com2008-10-221-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3741 0039d316-1c4b-4281-b951-d872f2087c98
* chromium tree changes for removing platform(mac). pinkerton@google.com2008-10-228-146/+322
| | | | | | Review URL: http://codereview.chromium.org/8032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3739 0039d316-1c4b-4281-b951-d872f2087c98
* Take TestShell.xcodeproj:TestShell, webkit.xcodeproj:glue, andmark@chromium.org2008-10-221-26/+80
| | | | | | | | webkit.xcodeproj:port out of the "all" Mac build temporarily to accommodate PLATFORM(MAC) killing in progress. Review URL: http://codereview.chromium.org/7870 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3738 0039d316-1c4b-4281-b951-d872f2087c98
* Add librenderer to Chrome Mac build (tracks r3691)mark@chromium.org2008-10-221-53/+223
| | | | | | Review URL: http://codereview.chromium.org/8034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3737 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Mac bustage from DEPS roll r3728mark@chromium.org2008-10-221-0/+1
| | | | | | Review URL: http://codereview.chromium.org/8058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3735 0039d316-1c4b-4281-b951-d872f2087c98
* Review URL: http://codereview.chromium.org/7848dglazkov@google.com2008-10-225-70/+17
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3732 0039d316-1c4b-4281-b951-d872f2087c98
* Removed entry for non-existent test.olehougaard@google.com2008-10-221-1/+0
| | | | | | Review URL: http://codereview.chromium.org/7867 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3730 0039d316-1c4b-4281-b951-d872f2087c98
* Fixing collision in definitions from old use of CHROME_SRC_DIR.bradnelson@google.com2008-10-221-4/+3
| | | | | | | | Wow, this was actually used to refer to src/chrome. Review URL: http://codereview.chromium.org/7859 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3729 0039d316-1c4b-4281-b951-d872f2087c98
* Temporarily start pulling V8 from the bleeding_edgekasperl@google.com2008-10-221-1/+1
| | | | | | | branch until the 'split window' change has landed. Review URL: http://codereview.chromium.org/7857 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3728 0039d316-1c4b-4281-b951-d872f2087c98
* Switching hash/ to $CHROME_SRC_DIR/chrome down in chrome.bradnelson@google.com2008-10-224-4/+4
| | | | | | Review URL: http://codereview.chromium.org/7856 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3727 0039d316-1c4b-4281-b951-d872f2087c98
* Update SCons build for PLATFORM(WIN) disable, and KJS build fix.sgk@google.com2008-10-222-7/+2
| | | | | | Review URL: http://codereview.chromium.org/8201 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3726 0039d316-1c4b-4281-b951-d872f2087c98
* Using $CHROME_SRC_DIR in place of hash/..bradnelson@google.com2008-10-2260-102/+105
| | | | | | | | This will facilitate changing where the main sconstruct lives. Review URL: http://codereview.chromium.org/7847 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3725 0039d316-1c4b-4281-b951-d872f2087c98
* forgot this file tooben@chromium.org2008-10-221-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3724 0039d316-1c4b-4281-b951-d872f2087c98