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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014, Google Inc. All rights reserved. 2 * Copyright (C) 2014, 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #include "modules/accessibility/AXProgressIndicator.h" 72 #include "modules/accessibility/AXProgressIndicator.h"
73 #include "modules/accessibility/AXRadioInput.h" 73 #include "modules/accessibility/AXRadioInput.h"
74 #include "modules/accessibility/AXSVGRoot.h" 74 #include "modules/accessibility/AXSVGRoot.h"
75 #include "modules/accessibility/AXSlider.h" 75 #include "modules/accessibility/AXSlider.h"
76 #include "modules/accessibility/AXSpinButton.h" 76 #include "modules/accessibility/AXSpinButton.h"
77 #include "modules/accessibility/AXTable.h" 77 #include "modules/accessibility/AXTable.h"
78 #include "modules/accessibility/AXTableCell.h" 78 #include "modules/accessibility/AXTableCell.h"
79 #include "modules/accessibility/AXTableColumn.h" 79 #include "modules/accessibility/AXTableColumn.h"
80 #include "modules/accessibility/AXTableHeaderContainer.h" 80 #include "modules/accessibility/AXTableHeaderContainer.h"
81 #include "modules/accessibility/AXTableRow.h" 81 #include "modules/accessibility/AXTableRow.h"
82 #include "wtf/PassRefPtr.h" 82 #include "platform/wtf/PassRefPtr.h"
83 #include "wtf/PtrUtil.h" 83 #include "platform/wtf/PtrUtil.h"
84 84
85 namespace blink { 85 namespace blink {
86 86
87 using namespace HTMLNames; 87 using namespace HTMLNames;
88 88
89 // static 89 // static
90 AXObjectCache* AXObjectCacheImpl::Create(Document& document) { 90 AXObjectCache* AXObjectCacheImpl::Create(Document& document) {
91 return new AXObjectCacheImpl(document); 91 return new AXObjectCacheImpl(document);
92 } 92 }
93 93
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1249 visitor->Trace(document_); 1249 visitor->Trace(document_);
1250 visitor->Trace(node_object_mapping_); 1250 visitor->Trace(node_object_mapping_);
1251 1251
1252 visitor->Trace(objects_); 1252 visitor->Trace(objects_);
1253 visitor->Trace(notifications_to_post_); 1253 visitor->Trace(notifications_to_post_);
1254 1254
1255 AXObjectCache::Trace(visitor); 1255 AXObjectCache::Trace(visitor);
1256 } 1256 }
1257 1257
1258 } // namespace blink 1258 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698