| OLD | NEW |
| 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/plugins/npapi/plugin_list.h" | 10 #include "webkit/plugins/npapi/plugin_list.h" |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 bool italic, int charset) { | 104 bool italic, int charset) { |
| 105 return -1; | 105 return -1; |
| 106 } | 106 } |
| 107 | 107 |
| 108 bool GetFontTable(int fd, uint32_t table, uint8_t* output, | 108 bool GetFontTable(int fd, uint32_t table, uint8_t* output, |
| 109 size_t* output_length) { | 109 size_t* output_length) { |
| 110 return false; | 110 return false; |
| 111 } | 111 } |
| 112 #endif | 112 #endif |
| 113 | 113 |
| 114 void NotifyJSOutOfMemory() { |
| 115 } |
| 116 |
| 114 } // namespace webkit_glue | 117 } // namespace webkit_glue |
| OLD | NEW |