diff options
author | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-28 21:03:47 +0000 |
---|---|---|
committer | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-28 21:03:47 +0000 |
commit | 63f070c3b59ac66cc3fec6aed42af59a8f33a569 (patch) | |
tree | a3acbfb2709a9bcb8f45015c0ce7358fdf8a6728 /base | |
parent | 5ee76d47e12c3bcaf088483456470698720c082d (diff) | |
download | chromium_src-63f070c3b59ac66cc3fec6aed42af59a8f33a569.zip chromium_src-63f070c3b59ac66cc3fec6aed42af59a8f33a569.tar.gz chromium_src-63f070c3b59ac66cc3fec6aed42af59a8f33a569.tar.bz2 |
Fix some issues when building with Visual Studio 2008.
Fixed projects that are set as "Application (.exe)" but that don't build an application. Converted then to "Utility".
util_prebuild, V8Config and V8Bindings_prebuild.
Fixed a template compilation error in message_loop.h
Changed PROP_ENTRY to PROP_ENTRY_TYPE since the former is now deprecated.
Everything still builds fine on VS2005.
BUG=1290595
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/message_loop.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/base/message_loop.h b/base/message_loop.h index 6bb7395..9fdbbc0 100644 --- a/base/message_loop.h +++ b/base/message_loop.h @@ -411,7 +411,6 @@ class MessageLoop { void Push(Task* task); Task* Pop(); // Extract the next Task from the queue, and return it. bool Empty() const { return !first_; } - friend void std::swap<TaskQueue>(TaskQueue&, TaskQueue&); private: Task* first_; Task* last_; |