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

Side by Side Diff: Source/platform/exported/WebData.cpp

Issue 438843004: Move the user agent styles sheets to blink_resources.grd (Part 3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 return m_private->size(); 59 return m_private->size();
60 } 60 }
61 61
62 const char* WebData::data() const 62 const char* WebData::data() const
63 { 63 {
64 if (m_private.isNull()) 64 if (m_private.isNull())
65 return 0; 65 return 0;
66 return m_private->data(); 66 return m_private->data();
67 } 67 }
68 68
69 #if INSIDE_BLINK
70 String WebData::toASCIIString() const
71 {
72 String result(data(), size());
73 ASSERT(result.containsOnlyASCII());
74 return result;
75 }
76 #endif
77
78
69 WebData::WebData(const PassRefPtr<SharedBuffer>& buffer) 79 WebData::WebData(const PassRefPtr<SharedBuffer>& buffer)
70 : m_private(buffer) 80 : m_private(buffer)
71 { 81 {
72 } 82 }
73 83
74 WebData& WebData::operator=(const PassRefPtr<SharedBuffer>& buffer) 84 WebData& WebData::operator=(const PassRefPtr<SharedBuffer>& buffer)
75 { 85 {
76 m_private = buffer; 86 m_private = buffer;
77 return *this; 87 return *this;
78 } 88 }
79 89
80 WebData::operator PassRefPtr<SharedBuffer>() const 90 WebData::operator PassRefPtr<SharedBuffer>() const
81 { 91 {
82 return PassRefPtr<SharedBuffer>(m_private.get()); 92 return PassRefPtr<SharedBuffer>(m_private.get());
83 } 93 }
84 94
85 } // namespace blink 95 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698