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

Side by Side Diff: Source/bindings/v8/custom/V8DataViewCustom.cpp

Issue 39393004: IDL compiler: rename WrapperTypeInfo info => wrapperTypeInfo (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 17 matching lines...) Expand all
28 28
29 #include "bindings/v8/V8Binding.h" 29 #include "bindings/v8/V8Binding.h"
30 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" 30 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h"
31 #include "core/html/canvas/DataView.h" 31 #include "core/html/canvas/DataView.h"
32 32
33 namespace WebCore { 33 namespace WebCore {
34 34
35 static void initializeScriptWrappableForInterface(DataView* object) 35 static void initializeScriptWrappableForInterface(DataView* object)
36 { 36 {
37 if (ScriptWrappable::wrapperCanBeStoredInObject(object)) 37 if (ScriptWrappable::wrapperCanBeStoredInObject(object))
38 ScriptWrappable::setTypeInfoInObject(object, &V8DataView::info); 38 ScriptWrappable::setTypeInfoInObject(object, &V8DataView::wrapperTypeInf o);
39 else 39 else
40 ASSERT_NOT_REACHED(); 40 ASSERT_NOT_REACHED();
41 } 41 }
42 42
43 } // namespace WebCore 43 } // namespace WebCore
44 44
45 // In ScriptWrappable::init, the use of a local function declaration has an issu e on Windows: 45 // In ScriptWrappable::init, the use of a local function declaration has an issu e on Windows:
46 // the local declaration does not pick up the surrounding namespace. Therefore, we provide this function 46 // the local declaration does not pick up the surrounding namespace. Therefore, we provide this function
47 // in the global namespace. 47 // in the global namespace.
48 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/fe edback/details/664619/the-namespace-of-local-function-declarations-in-c) 48 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/fe edback/details/664619/the-namespace-of-local-function-declarations-in-c)
49 void webCoreInitializeScriptWrappableForInterface(WebCore::DataView* object) 49 void webCoreInitializeScriptWrappableForInterface(WebCore::DataView* object)
50 { 50 {
51 WebCore::initializeScriptWrappableForInterface(object); 51 WebCore::initializeScriptWrappableForInterface(object);
52 } 52 }
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8ArrayBufferCustom.cpp ('k') | Source/bindings/v8/custom/V8FormDataCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698