summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add defines for the size of wchar_t to build_config.h. Use this in places ↵brettw@google.com2008-08-0714-218/+220
| | | | | | | | | | where we currently have an OS-specific check. Remove all WIN32 ifdefs from base and replace them with proper defined(OS...). I also fixed random style bits when I encountered them. I made major style fixes to string16. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@524 0039d316-1c4b-4281-b951-d872f2087c98
* Make tabs affected by context menu actions pulse. The effect is somewhat ↵beng@google.com2008-08-0710-74/+248
| | | | | | | | | | subtle since I'm re-using the selection animation. Added support to the Menu Delegate for notifications of when selection moves within the menu. B=1313339 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@523 0039d316-1c4b-4281-b951-d872f2087c98
* Disable the code that tries to use the transport DIB as the backing store ofdarin@google.com2008-08-071-0/+3
| | | | | | | | | the renderer. I think this might be impacting preformance in a negative way. R=iyengar git-svn-id: svn://svn.chromium.org/chrome/trunk/src@522 0039d316-1c4b-4281-b951-d872f2087c98
* Wrap text in the chrome first run dialog.tc@google.com2008-08-071-11/+7
| | | | | | | TEST=run chrome --lang=de --first-run and make sure the first bullet point wraps properly BUG=1297554 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@521 0039d316-1c4b-4281-b951-d872f2087c98
* Update chrome strings.tc@google.com2008-08-0741-43/+43
| | | | | | | TBR=mal git-svn-id: svn://svn.chromium.org/chrome/trunk/src@520 0039d316-1c4b-4281-b951-d872f2087c98
* Cross-platform portability fixes for JSONReader. Adds generic ↵mmentovai@google.com2008-08-078-54/+214
| | | | | | | | string-to-double parsing and tests in string_util. There is one behavior change here: numbers which "look" like integers by virtue of being free of '.', 'e', and 'E' are no longer rejected if they're not within the [INT_MIN .. INT_MAX] range. Instead, they'll be parsed and stored internally as doubles. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@519 0039d316-1c4b-4281-b951-d872f2087c98
* Reapply 508 to determine if it was indeed the cause of the ↵maruel@google.com2008-08-072-15/+10
| | | | | | webkit-release-playback failure. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@518 0039d316-1c4b-4281-b951-d872f2087c98
* Rollback changes made to URLRequestFileJob to use ObjectWatcher instead ofdarin@google.com2008-08-072-10/+11
| | | | | | | | | | ML::WatchObject. This is a test to confirm that the change caused a perf regression on single core machines. TBR=jar git-svn-id: svn://svn.chromium.org/chrome/trunk/src@517 0039d316-1c4b-4281-b951-d872f2087c98
* Patch uninstall until we fix bug 1308130.rahulk@google.com2008-08-071-11/+18
| | | | | | BUG=1311781 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@516 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the old NativeMB functions from string util, and use the new ones in ↵brettw@google.com2008-08-0715-238/+345
| | | | | | sys_strings.h. I also removed duplicated code from the sandbox that can now use this, and fixed one case in the bug reporter that should not have been using the native multibyte encoding. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@515 0039d316-1c4b-4281-b951-d872f2087c98
* Revert part of r508, it may have broken webkit-release-playback.deanm@google.com2008-08-072-10/+15
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@514 0039d316-1c4b-4281-b951-d872f2087c98
* Make base/SConstruct just like chrome/SConstruct for linux building.deanm@google.com2008-08-071-1/+38
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@513 0039d316-1c4b-4281-b951-d872f2087c98
* Combine stderr and stdout when running the webkit layout tests so we don't ↵sgk@google.com2008-08-071-2/+3
| | | | | | | | | | lose error messages on stderr. This was causing font-face-unicode-range.html to fail, but we weren't detecting it because the messages on stderr were disappearing, making it look like a timeout and crash, instead of the explicit failure we were expecting. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@512 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the old atomic operations interface.deanm@google.com2008-08-075-183/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@511 0039d316-1c4b-4281-b951-d872f2087c98
* Move away from the deprecated atomic.h interface to AtomicRefCount and ↵deanm@google.com2008-08-075-11/+16
| | | | | | AtomicSequenceNumber. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@510 0039d316-1c4b-4281-b951-d872f2087c98
* ICU isn't packaged on the Mac as it is on Windows.avi@google.com2008-08-071-1/+12
| | | | | | Review URL: http://chrome-reviews.prom.corp.google.com/1092 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@509 0039d316-1c4b-4281-b951-d872f2087c98
* Some cross platform changes and general cleanups to Pickle.deanm@google.com2008-08-073-25/+26
| | | | | | | | | | | - Clean up TrimWriteData, and remove the unneeded VariableLengthBuffer struct. Modify a test to slightly test TrimWriteData, but it probably deserves more. - Remove unneeded includes in pickle_unittest, including windows.h. - According to 3.5 of the C++ standard, CustomHeader could not be used as a template argument, because it had no linkage. This now builds on GCC. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@508 0039d316-1c4b-4281-b951-d872f2087c98
* Remove an unused include of deprecated atomic.h. Replace a custom singleton ↵deanm@google.com2008-08-073-15/+10
| | | | | | implementation with use of Singleton. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@507 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the LOCKED_EXPRESSION macro, it's clumbsy and unused.deanm@google.com2008-08-072-23/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@506 0039d316-1c4b-4281-b951-d872f2087c98
* Use 0 instead of NULL, since AtomicWord is intptr_t which is not a pointer ↵deanm@google.com2008-08-071-1/+1
| | | | | | type. GCC warns when converting NULL to a non-pointer type. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@505 0039d316-1c4b-4281-b951-d872f2087c98
* Check in files that didn't get committed with previous checkin.jabdelmalek@google.com2008-08-07196-0/+2982
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@504 0039d316-1c4b-4281-b951-d872f2087c98
* rollback r498 and r500 to repair test bustagedarin@google.com2008-08-076-41/+35
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@503 0039d316-1c4b-4281-b951-d872f2087c98
* apache is looking for dlls in usr/libmal@google.com2008-08-0735-0/+489
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@502 0039d316-1c4b-4281-b951-d872f2087c98
* apache is looking for usr/libmal@google.com2008-08-070-0/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@501 0039d316-1c4b-4281-b951-d872f2087c98
* fix unit_test failures, where process_.handle() may be nulldarin@google.com2008-08-071-1/+4
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@500 0039d316-1c4b-4281-b951-d872f2087c98
* Revised r408 such that we no longer sometimes fail ↵darin@google.com2008-08-075-31/+35
| | | | | | | | | | | | MetricsServiceTest.CrashRenderers. That test showed that we were exiting the browser process without noticing that a child process had crashed. I fixed that by simply adding a check to see if the child process is still around before initiating the normal close of the child process. This corresponds to the case where the browser decides to close a renderer. As a result, the race for the MessageLoop to receive a Task notifying the RenderProcessHost of a crashed renderer is removed from the picture. The bulk of this CL is just re-landing r408, which jar reviewed. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@498 0039d316-1c4b-4281-b951-d872f2087c98
* remove these accidentally added filesjabdelmalek@google.com2008-08-072-786/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@497 0039d316-1c4b-4281-b951-d872f2087c98
* remove cygwin_src because it's now in depsjabdelmalek@google.com2008-08-0760-42/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@494 0039d316-1c4b-4281-b951-d872f2087c98
* remove temp filejabdelmalek@google.com2008-08-071-3809/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@493 0039d316-1c4b-4281-b951-d872f2087c98
* Undo my extra changes.jabdelmalek@google.com2008-08-0720-1469/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@491 0039d316-1c4b-4281-b951-d872f2087c98
* Replace our cygwin binaries with another set that we can get the source for ↵jabdelmalek@google.com2008-08-073306-569526/+861071
| | | | | | (checked into cygwin_src). git-svn-id: svn://svn.chromium.org/chrome/trunk/src@490 0039d316-1c4b-4281-b951-d872f2087c98
* Daily translated string updates.mal@google.com2008-08-072-74/+74
| | | | | | TBR= glen@google.com git-svn-id: svn://svn.chromium.org/chrome/trunk/src@483 0039d316-1c4b-4281-b951-d872f2087c98
* Fix cut-and-paste error so we only try to build mac files on, gee, the mac...sgk@google.com2008-08-071-1/+1
| | | | | | TBR: mmentovai git-svn-id: svn://svn.chromium.org/chrome/trunk/src@482 0039d316-1c4b-4281-b951-d872f2087c98
* Add new sys_string_conversions_*.cc files to the SCons build.sgk@google.com2008-08-071-0/+11
| | | | | | TBR: brettw git-svn-id: svn://svn.chromium.org/chrome/trunk/src@481 0039d316-1c4b-4281-b951-d872f2087c98
* Make the OSExchangeDataTest.Html test pass now that I fixed NULL handling in ↵brettw@google.com2008-08-071-2/+18
| | | | | | UTF8->wide conversions. CF_HTML format does not need to be NULL terminated. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@480 0039d316-1c4b-4281-b951-d872f2087c98
* This is the addition of the system-dependent string conversions. This is ↵brettw@google.com2008-08-077-23/+412
| | | | | | just the new code and changing logging to use it. I will change other things to use this and delete the code in string_util in a subsequent pass. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@479 0039d316-1c4b-4281-b951-d872f2087c98
* SCons: handle new net/base/client_socket_*.cc files.sgk@google.com2008-08-071-3/+3
| | | | | | TBR: darin git-svn-id: svn://svn.chromium.org/chrome/trunk/src@476 0039d316-1c4b-4281-b951-d872f2087c98
* Remove php from Apache's configjabdelmalek@google.com2008-08-071-2/+2
| | | | | | TBR=pamg@google.com git-svn-id: svn://svn.chromium.org/chrome/trunk/src@475 0039d316-1c4b-4281-b951-d872f2087c98
* Add new about_version{,_flat}.html files to SCons.sgk@google.com2008-08-071-0/+1
| | | | | | TBR: erikkay git-svn-id: svn://svn.chromium.org/chrome/trunk/src@473 0039d316-1c4b-4281-b951-d872f2087c98
* fix bustage... F**Kdarin@google.com2008-08-071-3/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@472 0039d316-1c4b-4281-b951-d872f2087c98
* Rename HttpConnection to ClientSocketHandle, and rename ↵darin@google.com2008-08-0610-209/+231
| | | | | | | | | | HttpConnectionManager to ClientSocketPool. The max number of sockets per group is now a constructor argument to ClientSocketPool. I also changed the API on the pool to take ClientSocketHandle pointers. The former SocketHandle typedef is now a private ClientSocketPtr typedef for use within the implementation of ClientSocketPool. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@471 0039d316-1c4b-4281-b951-d872f2087c98
* Allow third_party/libxslt to compile on Linux. Like libxml, this uses ↵mmoss@google.com2008-08-069-34/+689
| | | | | | pre-generated configure headers in linux/. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@470 0039d316-1c4b-4281-b951-d872f2087c98
* Restored tabs should be considered "owned" by whatever random tab is ↵erg@google.com2008-08-061-2/+4
| | | | | | | | currently open. BUG=1305200 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@469 0039d316-1c4b-4281-b951-d872f2087c98
* Remove PHP from our cygwin directory since it's not used.jabdelmalek@google.com2008-08-061-0/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@468 0039d316-1c4b-4281-b951-d872f2087c98
* merge changes to cpp_bound_class from mac_july_2008 branch.ericroman@google.com2008-08-062-3/+3
| | | | | | (removes const on CppArgumentList's entries because of call sites like: "cpp_args[i].Set(args[i])") git-svn-id: svn://svn.chromium.org/chrome/trunk/src@467 0039d316-1c4b-4281-b951-d872f2087c98
* Adding an interactive UI test to catch when switching between two tabs (both ↵finnur@google.com2008-08-067-12/+175
| | | | | | | | | | | | with FindInPage open) is trashing the Esc handler and causing a crash. I originally tried an automated_ui test, but was unable to get it to work since Focus changes are involved. BUG=1303709 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@466 0039d316-1c4b-4281-b951-d872f2087c98
* * add webkit version and V8 version to about:versionerikkay@google.com2008-08-065-42/+105
| | | | | | | | | * reformat page * use new product image rather than an http link to google.com BUG=1300256 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@465 0039d316-1c4b-4281-b951-d872f2087c98
* We were passing -1 (indicating NULL terminated) to the UTF8->wide conversion ↵brettw@google.com2008-08-061-4/+6
| | | | | | | | function. The wide->UTF8 version is fine. This patch is just for branch. I'm reworking a lot of this code now. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@463 0039d316-1c4b-4281-b951-d872f2087c98
* Apparently, our WndProc can get called for other HWNDs :(darin@google.com2008-08-061-15/+17
| | | | | | TBR=brettw git-svn-id: svn://svn.chromium.org/chrome/trunk/src@461 0039d316-1c4b-4281-b951-d872f2087c98
* Add npruntime_util.cc to SCons build.sgk@google.com2008-08-061-0/+1
| | | | | | TBR: darin git-svn-id: svn://svn.chromium.org/chrome/trunk/src@460 0039d316-1c4b-4281-b951-d872f2087c98