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

Side by Side Diff: Source/core/loader/FrameLoader.cpp

Issue 102103002: Have HashMap<KeyType, AtomicString>::get() return a const reference (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use AtomicString::ConstructFromLiteral Created 7 years 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 | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/timing/Performance.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com>
6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved.
7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com>
8 * Copyright (C) 2011 Google Inc. All rights reserved. 8 * Copyright (C) 2011 Google Inc. All rights reserved.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 375
376 m_frame->document()->initContentSecurityPolicy(m_documentLoader ? ContentSec urityPolicyResponseHeaders(m_documentLoader->response()) : ContentSecurityPolicy ResponseHeaders()); 376 m_frame->document()->initContentSecurityPolicy(m_documentLoader ? ContentSec urityPolicyResponseHeaders(m_documentLoader->response()) : ContentSecurityPolicy ResponseHeaders());
377 377
378 Settings* settings = m_frame->document()->settings(); 378 Settings* settings = m_frame->document()->settings();
379 if (settings) { 379 if (settings) {
380 m_frame->document()->fetcher()->setImagesEnabled(settings->areImagesEnab led()); 380 m_frame->document()->fetcher()->setImagesEnabled(settings->areImagesEnab led());
381 m_frame->document()->fetcher()->setAutoLoadImages(settings->loadsImagesA utomatically()); 381 m_frame->document()->fetcher()->setAutoLoadImages(settings->loadsImagesA utomatically());
382 } 382 }
383 383
384 if (m_documentLoader) { 384 if (m_documentLoader) {
385 String dnsPrefetchControl = m_documentLoader->response().httpHeaderField ("X-DNS-Prefetch-Control"); 385 const AtomicString& dnsPrefetchControl = m_documentLoader->response().ht tpHeaderField("X-DNS-Prefetch-Control");
386 if (!dnsPrefetchControl.isEmpty()) 386 if (!dnsPrefetchControl.isEmpty())
387 m_frame->document()->parseDNSPrefetchControlHeader(dnsPrefetchContro l); 387 m_frame->document()->parseDNSPrefetchControlHeader(dnsPrefetchContro l);
388 388
389 String headerContentLanguage = m_documentLoader->response().httpHeaderFi eld("Content-Language"); 389 String headerContentLanguage = m_documentLoader->response().httpHeaderFi eld("Content-Language");
390 if (!headerContentLanguage.isEmpty()) { 390 if (!headerContentLanguage.isEmpty()) {
391 size_t commaIndex = headerContentLanguage.find(','); 391 size_t commaIndex = headerContentLanguage.find(',');
392 headerContentLanguage.truncate(commaIndex); // kNotFound == -1 == do n't truncate 392 headerContentLanguage.truncate(commaIndex); // kNotFound == -1 == do n't truncate
393 headerContentLanguage = headerContentLanguage.stripWhiteSpace(isHTML Space<UChar>); 393 headerContentLanguage = headerContentLanguage.stripWhiteSpace(isHTML Space<UChar>);
394 if (!headerContentLanguage.isEmpty()) 394 if (!headerContentLanguage.isEmpty())
395 m_frame->document()->setContentLanguage(headerContentLanguage); 395 m_frame->document()->setContentLanguage(headerContentLanguage);
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 { 1565 {
1566 SandboxFlags flags = m_forcedSandboxFlags; 1566 SandboxFlags flags = m_forcedSandboxFlags;
1567 if (Frame* parentFrame = m_frame->tree().parent()) 1567 if (Frame* parentFrame = m_frame->tree().parent())
1568 flags |= parentFrame->document()->sandboxFlags(); 1568 flags |= parentFrame->document()->sandboxFlags();
1569 if (HTMLFrameOwnerElement* ownerElement = m_frame->ownerElement()) 1569 if (HTMLFrameOwnerElement* ownerElement = m_frame->ownerElement())
1570 flags |= ownerElement->sandboxFlags(); 1570 flags |= ownerElement->sandboxFlags();
1571 return flags; 1571 return flags;
1572 } 1572 }
1573 1573
1574 } // namespace WebCore 1574 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/timing/Performance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698