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

Side by Side Diff: content/ppapi_plugin/ppapi_blink_platform_impl.cc

Issue 1955523002: Fallback on system locale for font selection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text/same-script-different-lang-in-Hindi.html » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/ppapi_plugin/ppapi_blink_platform_impl.h" 5 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 10
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 } 193 }
194 194
195 blink::WebString PpapiBlinkPlatformImpl::cookies( 195 blink::WebString PpapiBlinkPlatformImpl::cookies(
196 const blink::WebURL& url, 196 const blink::WebURL& url,
197 const blink::WebURL& first_party_for_cookies) { 197 const blink::WebURL& first_party_for_cookies) {
198 NOTREACHED(); 198 NOTREACHED();
199 return blink::WebString(); 199 return blink::WebString();
200 } 200 }
201 201
202 blink::WebString PpapiBlinkPlatformImpl::defaultLocale() { 202 blink::WebString PpapiBlinkPlatformImpl::defaultLocale() {
203 NOTREACHED(); 203 return blink::WebString::fromUTF8("en");
204 return blink::WebString();
205 } 204 }
206 205
207 blink::WebThemeEngine* PpapiBlinkPlatformImpl::themeEngine() { 206 blink::WebThemeEngine* PpapiBlinkPlatformImpl::themeEngine() {
208 NOTREACHED(); 207 NOTREACHED();
209 return NULL; 208 return NULL;
210 } 209 }
211 210
212 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { 211 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() {
213 NOTREACHED(); 212 NOTREACHED();
214 return NULL; 213 return NULL;
(...skipping 27 matching lines...) Expand all
242 } 241 }
243 242
244 int PpapiBlinkPlatformImpl::databaseDeleteFile( 243 int PpapiBlinkPlatformImpl::databaseDeleteFile(
245 const blink::WebString& vfs_file_name, 244 const blink::WebString& vfs_file_name,
246 bool sync_dir) { 245 bool sync_dir) {
247 NOTREACHED(); 246 NOTREACHED();
248 return 0; 247 return 0;
249 } 248 }
250 249
251 } // namespace content 250 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text/same-script-different-lang-in-Hindi.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698