Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: include/v8.h

Issue 119983003: Make -Wshadow happy. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 731
732 732
733 /** 733 /**
734 * A PersistentBase which has move semantics. 734 * A PersistentBase which has move semantics.
735 * 735 *
736 * Note: Persistent class hierarchy is subject to future changes. 736 * Note: Persistent class hierarchy is subject to future changes.
737 */ 737 */
738 template<class T> 738 template<class T>
739 class UniquePersistent : public PersistentBase<T> { 739 class UniquePersistent : public PersistentBase<T> {
740 struct RValue { 740 struct RValue {
741 V8_INLINE explicit RValue(UniquePersistent* object) : object(object) {} 741 V8_INLINE explicit RValue(UniquePersistent* obj) : object(obj) {}
742 UniquePersistent* object; 742 UniquePersistent* object;
743 }; 743 };
744 744
745 public: 745 public:
746 /** 746 /**
747 * A UniquePersistent with no storage cell. 747 * A UniquePersistent with no storage cell.
748 */ 748 */
749 V8_INLINE UniquePersistent() : PersistentBase<T>(0) { } 749 V8_INLINE UniquePersistent() : PersistentBase<T>(0) { }
750 /** 750 /**
751 * Construct a UniquePersistent from a Handle. 751 * Construct a UniquePersistent from a Handle.
(...skipping 5694 matching lines...) Expand 10 before | Expand all | Expand 10 after
6446 */ 6446 */
6447 6447
6448 6448
6449 } // namespace v8 6449 } // namespace v8
6450 6450
6451 6451
6452 #undef TYPE_CHECK 6452 #undef TYPE_CHECK
6453 6453
6454 6454
6455 #endif // V8_H_ 6455 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698