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

Unified Diff: tools/clang/blink_gc_plugin/Config.h

Issue 401613002: clang/blink_gc_plugin: Replace 'WebCore' with 'blink' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp ('k') | tools/clang/blink_gc_plugin/RecordInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/blink_gc_plugin/Config.h
diff --git a/tools/clang/blink_gc_plugin/Config.h b/tools/clang/blink_gc_plugin/Config.h
index ad226f156c2618b3c449ec2890fc65dfca9a82a6..9dc97798821919d93237a56d17e07a44b514d12e 100644
--- a/tools/clang/blink_gc_plugin/Config.h
+++ b/tools/clang/blink_gc_plugin/Config.h
@@ -92,11 +92,11 @@ class Config {
}
// Following http://crrev.com/369633033 (Blink r177436),
- // ignore WebCore::ScriptWrappable's destructor.
+ // ignore blink::ScriptWrappable's destructor.
// FIXME: remove when its non-Oilpan destructor is removed.
static bool HasIgnorableDestructor(const std::string& ns,
const std::string& name) {
- return ns == "WebCore" && name == "ScriptWrappable";
+ return ns == "blink" && name == "ScriptWrappable";
}
// Assumes name is a valid collection name.
« no previous file with comments | « tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp ('k') | tools/clang/blink_gc_plugin/RecordInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698