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

Side by Side Diff: third_party/WebKit/Source/core/page/FrameTree.cpp

Issue 1835773002: Rename AtomicString::string() to AtomicString::getString(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Windows Created 4 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) Research In Motion Limited 2010. All rights reserved. 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
3 * Copyright (C) 2006 Apple Computer, Inc. 3 * Copyright (C) 2006 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 WillBeHeapVector<RawPtrWillBeMember<Frame>, 16> chain; 163 WillBeHeapVector<RawPtrWillBeMember<Frame>, 16> chain;
164 Frame* frame; 164 Frame* frame;
165 for (frame = m_thisFrame; frame; frame = frame->tree().parent()) { 165 for (frame = m_thisFrame; frame; frame = frame->tree().parent()) {
166 if (frame->tree().uniqueName().startsWith(framePathPrefix)) 166 if (frame->tree().uniqueName().startsWith(framePathPrefix))
167 break; 167 break;
168 chain.append(frame); 168 chain.append(frame);
169 } 169 }
170 StringBuilder uniqueName; 170 StringBuilder uniqueName;
171 uniqueName.append(framePathPrefix); 171 uniqueName.append(framePathPrefix);
172 if (frame) { 172 if (frame) {
173 uniqueName.append(frame->tree().uniqueName().string().substring(framePat hPrefixLength, 173 uniqueName.append(frame->tree().uniqueName().getString().substring(frame PathPrefixLength,
174 frame->tree().uniqueName().length() - framePathPrefixLength - frameP athSuffixLength)); 174 frame->tree().uniqueName().length() - framePathPrefixLength - frameP athSuffixLength));
175 } 175 }
176 for (int i = chain.size() - 1; i >= 0; --i) { 176 for (int i = chain.size() - 1; i >= 0; --i) {
177 frame = chain[i]; 177 frame = chain[i];
178 uniqueName.append('/'); 178 uniqueName.append('/');
179 uniqueName.append(frame->tree().uniqueName()); 179 uniqueName.append(frame->tree().uniqueName());
180 } 180 }
181 181
182 uniqueName.appendLiteral("/<!--frame"); 182 uniqueName.appendLiteral("/<!--frame");
183 uniqueName.appendNumber(childCount() - (existingChildFrame ? 1 : 0)); 183 uniqueName.appendNumber(childCount() - (existingChildFrame ? 1 : 0));
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 { 422 {
423 if (!frame) { 423 if (!frame) {
424 printf("Null input frame\n"); 424 printf("Null input frame\n");
425 return; 425 return;
426 } 426 }
427 427
428 printFrames(frame->tree().top(), frame, 0); 428 printFrames(frame->tree().top(), frame, 0);
429 } 429 }
430 430
431 #endif 431 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/ThreadableLoader.h ('k') | third_party/WebKit/Source/core/page/PrintContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698