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

Side by Side Diff: webkit/support/webkit_support_glue.cc

Issue 2956002: Pepper v2 Font API browser implementation. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/tools/test_shell/test_shell.cc » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "webkit/glue/webkit_glue.h" 5 #include "webkit/glue/webkit_glue.h"
6 6
7 #include "base/base_paths.h" 7 #include "base/base_paths.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
10 #include "webkit/glue/plugins/plugin_list.h" 10 #include "webkit/glue/plugins/plugin_list.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #if defined(OS_WIN) 65 #if defined(OS_WIN)
66 bool DownloadUrl(const std::string& url, HWND caller_window) { 66 bool DownloadUrl(const std::string& url, HWND caller_window) {
67 return false; 67 return false;
68 } 68 }
69 #endif 69 #endif
70 70
71 bool IsSingleProcess() { 71 bool IsSingleProcess() {
72 return true; 72 return true;
73 } 73 }
74 74
75 #if defined(OS_LINUX)
76 int MatchFontWithFallback(const std::string& face, bool bold,
77 bool italic, int charset) {
78 return -1;
79 }
80
81 bool GetFontTable(int fd, uint32_t table, uint8_t* output,
82 size_t* output_length) {
83 return false;
84 }
85 #endif
86
75 } // namespace webkit_glue 87 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/tools/test_shell/test_shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698