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

Side by Side Diff: chrome/renderer/extensions/object_backed_native_handler.cc

Issue 230613005: Cleanup: Remove unnecessary define, since UnsafePersistent has indeed been removed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | chrome/renderer/extensions/v8_schema_registry.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // TODO(dcarney): Remove this when UnsafePersistent is removed.
6 #define V8_ALLOW_ACCESS_TO_RAW_HANDLE_CONSTRUCTOR
7
8 #include "chrome/renderer/extensions/object_backed_native_handler.h" 5 #include "chrome/renderer/extensions/object_backed_native_handler.h"
9 6
10 #include "base/logging.h" 7 #include "base/logging.h"
11 #include "base/memory/linked_ptr.h" 8 #include "base/memory/linked_ptr.h"
12 #include "chrome/renderer/extensions/chrome_v8_context.h" 9 #include "chrome/renderer/extensions/chrome_v8_context.h"
13 #include "chrome/renderer/extensions/console.h" 10 #include "chrome/renderer/extensions/console.h"
14 #include "chrome/renderer/extensions/module_system.h" 11 #include "chrome/renderer/extensions/module_system.h"
15 #include "v8/include/v8.h" 12 #include "v8/include/v8.h"
16 13
17 namespace extensions { 14 namespace extensions {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 handler_function_value.As<v8::External>()->Value()); 91 handler_function_value.As<v8::External>()->Value());
95 data->Delete(v8::String::NewFromUtf8(isolate, kHandlerFunction)); 92 data->Delete(v8::String::NewFromUtf8(isolate, kHandlerFunction));
96 } 93 }
97 router_data_.Clear(); 94 router_data_.Clear();
98 object_template_.reset(); 95 object_template_.reset();
99 context_ = NULL; 96 context_ = NULL;
100 NativeHandler::Invalidate(); 97 NativeHandler::Invalidate();
101 } 98 }
102 99
103 } // namespace extensions 100 } // namespace extensions
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/extensions/v8_schema_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698