| 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_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ | 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ |
| 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ | 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "webkit/glue/webfilesystem_impl.h" | 9 #include "webkit/glue/webfilesystem_impl.h" |
| 10 #include "webkit/glue/webkitclient_impl.h" | 10 #include "webkit/glue/webkitclient_impl.h" |
| 11 | 11 |
| 12 class BrowserWebKitClientImpl : public webkit_glue::WebKitClientImpl { | 12 class BrowserWebKitClientImpl : public webkit_glue::WebKitClientImpl { |
| 13 public: | 13 public: |
| (...skipping 30 matching lines...) Expand all Loading... |
| 44 bool isLocalStorage); | 44 bool isLocalStorage); |
| 45 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository(); | 45 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository(); |
| 46 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, | 46 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, |
| 47 bool sync_dir); | 47 bool sync_dir); |
| 48 | 48 |
| 49 private: | 49 private: |
| 50 webkit_glue::WebFileSystemImpl file_system_; | 50 webkit_glue::WebFileSystemImpl file_system_; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ | 53 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ |
| OLD | NEW |