| OLD | NEW |
| 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 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "content/child/blink_platform_impl.h" | 10 #include "content/child/blink_platform_impl.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 blink::WebMessagePortChannel** channel2); | 32 blink::WebMessagePortChannel** channel2); |
| 33 virtual void setCookies(const blink::WebURL& url, | 33 virtual void setCookies(const blink::WebURL& url, |
| 34 const blink::WebURL& first_party_for_cookies, | 34 const blink::WebURL& first_party_for_cookies, |
| 35 const blink::WebString& value); | 35 const blink::WebString& value); |
| 36 virtual blink::WebString cookies( | 36 virtual blink::WebString cookies( |
| 37 const blink::WebURL& url, | 37 const blink::WebURL& url, |
| 38 const blink::WebURL& first_party_for_cookies); | 38 const blink::WebURL& first_party_for_cookies); |
| 39 virtual blink::WebString defaultLocale(); | 39 virtual blink::WebString defaultLocale(); |
| 40 virtual blink::WebThemeEngine* themeEngine(); | 40 virtual blink::WebThemeEngine* themeEngine(); |
| 41 virtual blink::WebURLLoader* createURLLoader(); | 41 virtual blink::WebURLLoader* createURLLoader(); |
| 42 virtual blink::WebSocketStreamHandle* createSocketStreamHandle(); | |
| 43 virtual void getPluginList(bool refresh, blink::WebPluginListBuilder*); | 42 virtual void getPluginList(bool refresh, blink::WebPluginListBuilder*); |
| 44 virtual blink::WebData loadResource(const char* name); | 43 virtual blink::WebData loadResource(const char* name); |
| 45 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); | 44 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); |
| 46 virtual void dispatchStorageEvent(const blink::WebString& key, | 45 virtual void dispatchStorageEvent(const blink::WebString& key, |
| 47 const blink::WebString& oldValue, const blink::WebString& newValue, | 46 const blink::WebString& oldValue, const blink::WebString& newValue, |
| 48 const blink::WebString& origin, const blink::WebURL& url, | 47 const blink::WebString& origin, const blink::WebURL& url, |
| 49 bool isLocalStorage); | 48 bool isLocalStorage); |
| 50 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, | 49 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, |
| 51 bool sync_dir); | 50 bool sync_dir); |
| 52 | 51 |
| 53 private: | 52 private: |
| 54 class SandboxSupport; | 53 class SandboxSupport; |
| 55 scoped_ptr<SandboxSupport> sandbox_support_; | 54 scoped_ptr<SandboxSupport> sandbox_support_; |
| 56 | 55 |
| 57 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl); | 56 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl); |
| 58 }; | 57 }; |
| 59 | 58 |
| 60 } // namespace content | 59 } // namespace content |
| 61 | 60 |
| 62 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ | 61 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |