| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_LINUX_H_ | 5 #ifndef CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_LINUX_H_ |
| 6 #define CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_LINUX_H_ | 6 #define CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_LINUX_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 namespace WebKit { | 13 namespace WebKit { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 // which case output_length will be set to the required size in bytes. | 45 // which case output_length will be set to the required size in bytes. |
| 46 // output_length: size of output, if it's not 0. | 46 // output_length: size of output, if it's not 0. |
| 47 // | 47 // |
| 48 // returns: true on success. | 48 // returns: true on success. |
| 49 bool GetFontTable(int fd, uint32_t table, uint8_t* output, | 49 bool GetFontTable(int fd, uint32_t table, uint8_t* output, |
| 50 size_t* output_length); | 50 size_t* output_length); |
| 51 | 51 |
| 52 }; // namespace render_sandbox_support | 52 }; // namespace render_sandbox_support |
| 53 | 53 |
| 54 #endif // CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_LINUX_H_ | 54 #endif // CHROME_RENDERER_RENDERER_SANDBOX_SUPPORT_LINUX_H_ |
| OLD | NEW |