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

Unified Diff: content/renderer/pepper/host_var_tracker.h

Issue 1113783002: Use Local instead of Handle in src/content/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/memory_benchmarking_extension.cc ('k') | content/renderer/pepper/host_var_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/host_var_tracker.h
diff --git a/content/renderer/pepper/host_var_tracker.h b/content/renderer/pepper/host_var_tracker.h
index 0be5d1d2eb63cce86bc6e7382c8b2b233875cc5f..9f1c61d51a4b0528ffc837d8b0594d740d1b7db4 100644
--- a/content/renderer/pepper/host_var_tracker.h
+++ b/content/renderer/pepper/host_var_tracker.h
@@ -40,7 +40,7 @@ class HostVarTracker : public ppapi::VarTracker {
void RemoveV8ObjectVar(ppapi::V8ObjectVar* object_var);
// Creates or retrieves a V8ObjectVar.
PP_Var V8ObjectVarForV8Object(PP_Instance instance,
- v8::Handle<v8::Object> object);
+ v8::Local<v8::Object> object);
// Returns the number of V8ObjectVars associated with the given instance.
// Returns 0 if the instance isn't known.
CONTENT_EXPORT int GetLiveV8ObjectVarsForTest(PP_Instance instance);
@@ -76,7 +76,7 @@ class HostVarTracker : public ppapi::VarTracker {
// and the instance it is associated with.
struct V8ObjectVarKey {
explicit V8ObjectVarKey(ppapi::V8ObjectVar* object_var);
- V8ObjectVarKey(PP_Instance i, v8::Handle<v8::Object> object);
+ V8ObjectVarKey(PP_Instance i, v8::Local<v8::Object> object);
~V8ObjectVarKey();
bool operator<(const V8ObjectVarKey& other) const;
@@ -89,7 +89,7 @@ class HostVarTracker : public ppapi::VarTracker {
// Returns an iterator into |object_map| which points to V8Object which
// is associated with the given instance and object.
ObjectMap::iterator GetForV8Object(PP_Instance instance,
- v8::Handle<v8::Object> object);
+ v8::Local<v8::Object> object);
// A multimap of V8ObjectVarKey -> ObjectMap.
« no previous file with comments | « content/renderer/memory_benchmarking_extension.cc ('k') | content/renderer/pepper/host_var_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698