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

Side by Side Diff: sky/engine/testing/platform/platform_impl.cc

Issue 691623003: Remove Platform::parseDataURL (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/testing/platform/platform_impl.h ('k') | sky/viewer/platform/platform_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "sky/engine/testing/platform/platform_impl.h" 5 #include "sky/engine/testing/platform/platform_impl.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/rand_util.h" 9 #include "base/rand_util.h"
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 blink::WebScrollbarBehavior* PlatformImpl::scrollbarBehavior() { 98 blink::WebScrollbarBehavior* PlatformImpl::scrollbarBehavior() {
99 return &scrollbar_behavior_; 99 return &scrollbar_behavior_;
100 } 100 }
101 101
102 const unsigned char* PlatformImpl::getTraceCategoryEnabledFlag( 102 const unsigned char* PlatformImpl::getTraceCategoryEnabledFlag(
103 const char* category_name) { 103 const char* category_name) {
104 static const unsigned char buf[] = "*"; 104 static const unsigned char buf[] = "*";
105 return buf; 105 return buf;
106 } 106 }
107 107
108 blink::WebData PlatformImpl::parseDataURL(
109 const blink::WebURL& url,
110 blink::WebString& mimetype_out,
111 blink::WebString& charset_out) {
112 std::string mimetype, charset, data;
113 if (net::DataURL::Parse(url, &mimetype, &charset, &data)
114 && net::IsSupportedMimeType(mimetype)) {
115 mimetype_out = blink::WebString::fromUTF8(mimetype);
116 charset_out = blink::WebString::fromUTF8(charset);
117 return data;
118 }
119 return blink::WebData();
120 }
121
122 } // namespace sky 108 } // namespace sky
OLDNEW
« no previous file with comments | « sky/engine/testing/platform/platform_impl.h ('k') | sky/viewer/platform/platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698