| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |