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

Side by Side Diff: webkit\port\bindings\v8\v8_binding.h

Issue 149208: Reverting 19963. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | « webkit/webkit.gyp ('k') | webkit\port\bindings\v8\v8_binding.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_BINDING_H__ 5 #ifndef V8_BINDING_H__
6 #define V8_BINDING_H__ 6 #define V8_BINDING_H__
7 7
8 #include "config.h" 8 #include "config.h"
9 9
10 #include "MathExtras.h" 10 #include "MathExtras.h"
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 126
127 inline v8::Handle<v8::Value> v8StringOrFalse(const String& str) { 127 inline v8::Handle<v8::Value> v8StringOrFalse(const String& str) {
128 return str.isNull() 128 return str.isNull()
129 ? v8::Handle<v8::Value>(v8::False()) 129 ? v8::Handle<v8::Value>(v8::False())
130 : v8::Handle<v8::Value>(v8String(str)); 130 : v8::Handle<v8::Value>(v8String(str));
131 } 131 }
132 132
133 } // namespace WebCore 133 } // namespace WebCore
134 134
135 #endif // V8_BINDING_H__ 135 #endif // V8_BINDING_H__
OLDNEW
« no previous file with comments | « webkit/webkit.gyp ('k') | webkit\port\bindings\v8\v8_binding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698