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

Unified Diff: third_party/WebKit/public/platform/WebData.h

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebData.h
diff --git a/third_party/WebKit/public/platform/WebData.h b/third_party/WebKit/public/platform/WebData.h
index ba79a0dd6c34f45671bdcb88b6b1ee1a0224da94..4d21c10bdb03c542653a03237bc999b2769d12d3 100644
--- a/third_party/WebKit/public/platform/WebData.h
+++ b/third_party/WebKit/public/platform/WebData.h
@@ -83,11 +83,15 @@ class BLINK_PLATFORM_EXPORT WebData {
#else
template <class C>
WebData(const C& c) {
+ /* DO NOT SUBMIT - merge conflict marker
+ * Please spell |data| and |size| (rather than |Data| and |Size|) below. */
assign(c.data(), c.size());
}
template <class C>
WebData& operator=(const C& c) {
+ /* DO NOT SUBMIT - merge conflict marker
+ * Please spell |data| and |size| (rather than |Data| and |Size|) below. */
assign(c.data(), c.size());
return *this;
}
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/cpp.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698