| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef WEBKIT_GLUE_WEBKIT_GLUE_H_ | 5 #ifndef WEBKIT_GLUE_WEBKIT_GLUE_H_ |
| 6 #define WEBKIT_GLUE_WEBKIT_GLUE_H_ | 6 #define WEBKIT_GLUE_WEBKIT_GLUE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 | 9 |
| 10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 class StringPiece; | 28 class StringPiece; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace skia { | 31 namespace skia { |
| 32 class PlatformCanvas; | 32 class PlatformCanvas; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace WebKit { | 35 namespace WebKit { |
| 36 class WebFrame; | 36 class WebFrame; |
| 37 class WebString; | 37 class WebString; |
| 38 class WebView; | |
| 39 } | 38 } |
| 40 | 39 |
| 41 namespace webkit { | 40 namespace webkit { |
| 42 struct WebPluginInfo; | 41 struct WebPluginInfo; |
| 43 } | 42 } |
| 44 | 43 |
| 45 namespace webkit_glue { | 44 namespace webkit_glue { |
| 46 | 45 |
| 47 | 46 |
| 48 //---- BEGIN FUNCTIONS IMPLEMENTED BY WEBKIT/GLUE ----------------------------- | 47 //---- BEGIN FUNCTIONS IMPLEMENTED BY WEBKIT/GLUE ----------------------------- |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 // Returns the locale that this instance of webkit is running as. This is of | 208 // Returns the locale that this instance of webkit is running as. This is of |
| 210 // the form language-country (e.g., en-US or pt-BR). | 209 // the form language-country (e.g., en-US or pt-BR). |
| 211 std::string GetWebKitLocale(); | 210 std::string GetWebKitLocale(); |
| 212 | 211 |
| 213 // Returns true if the embedder is running in single process mode. | 212 // Returns true if the embedder is running in single process mode. |
| 214 bool IsSingleProcess(); | 213 bool IsSingleProcess(); |
| 215 | 214 |
| 216 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER --------------------------------- | 215 // ---- END FUNCTIONS IMPLEMENTED BY EMBEDDER --------------------------------- |
| 217 | 216 |
| 218 | 217 |
| 219 } // namespace webkit_glue | 218 } // namespace webkit_glue |
| 220 | 219 |
| 221 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ | 220 #endif // WEBKIT_GLUE_WEBKIT_GLUE_H_ |
| OLD | NEW |