summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
Diffstat (limited to 'webkit')
-rw-r--r--webkit/appcache/appcache_disk_cache.h2
-rw-r--r--webkit/appcache/appcache_host.h2
-rw-r--r--webkit/appcache/appcache_update_job.h4
-rw-r--r--webkit/appcache/view_appcache_internals_job.h2
-rw-r--r--webkit/blob/view_blob_internals_job.h2
-rw-r--r--webkit/glue/weburlloader_impl.h2
-rw-r--r--webkit/plugins/npapi/test/plugin_npobject_lifetime_test.h4
-rw-r--r--webkit/plugins/npapi/test/plugin_thread_async_call_test.h2
-rw-r--r--webkit/plugins/npapi/webplugin_delegate_impl.h2
-rw-r--r--webkit/plugins/ppapi/ppb_audio_impl.h2
-rw-r--r--webkit/quota/usage_tracker.h2
-rw-r--r--webkit/support/simple_database_system.h2
-rw-r--r--webkit/tools/test_shell/layout_test_controller.h2
-rw-r--r--webkit/tools/test_shell/test_shell_request_context.h2
-rw-r--r--webkit/tools/test_shell/test_shell_webkit_init.h2
15 files changed, 17 insertions, 17 deletions
diff --git a/webkit/appcache/appcache_disk_cache.h b/webkit/appcache/appcache_disk_cache.h
index 1799813..404da05 100644
--- a/webkit/appcache/appcache_disk_cache.h
+++ b/webkit/appcache/appcache_disk_cache.h
@@ -57,7 +57,7 @@ class AppCacheDiskCache {
disk_cache::Backend* backend_ptr_; // Accessed directly.
private:
- ~CreateBackendCallback() {
+ virtual ~CreateBackendCallback() {
delete backend_ptr_;
}
};
diff --git a/webkit/appcache/appcache_host.h b/webkit/appcache/appcache_host.h
index a06cdd3..0f8ac47 100644
--- a/webkit/appcache/appcache_host.h
+++ b/webkit/appcache/appcache_host.h
@@ -48,7 +48,7 @@ class AppCacheHost : public AppCacheStorage::Delegate,
AppCacheHost(int host_id, AppCacheFrontend* frontend,
AppCacheService* service);
- ~AppCacheHost();
+ virtual ~AppCacheHost();
// Adds/removes an observer, the AppCacheHost does not take
// ownership of the observer.
diff --git a/webkit/appcache/appcache_update_job.h b/webkit/appcache/appcache_update_job.h
index 04c3c80..b85d73b 100644
--- a/webkit/appcache/appcache_update_job.h
+++ b/webkit/appcache/appcache_update_job.h
@@ -33,7 +33,7 @@ class AppCacheUpdateJob : public AppCacheStorage::Delegate,
public AppCacheHost::Observer {
public:
AppCacheUpdateJob(AppCacheService* service, AppCacheGroup* group);
- ~AppCacheUpdateJob();
+ virtual ~AppCacheUpdateJob();
// Triggers the update process or adds more info if this update is already
// in progress.
@@ -101,7 +101,7 @@ class AppCacheUpdateJob : public AppCacheStorage::Delegate,
URLFetcher(const GURL& url,
FetchType fetch_type,
AppCacheUpdateJob* job);
- ~URLFetcher();
+ virtual ~URLFetcher();
void Start();
FetchType fetch_type() const { return fetch_type_; }
net::URLRequest* request() const { return request_.get(); }
diff --git a/webkit/appcache/view_appcache_internals_job.h b/webkit/appcache/view_appcache_internals_job.h
index de2c736..8995713 100644
--- a/webkit/appcache/view_appcache_internals_job.h
+++ b/webkit/appcache/view_appcache_internals_job.h
@@ -34,7 +34,7 @@ class ViewAppCacheInternalsJob : public net::URLRequestSimpleJob {
virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
private:
- ~ViewAppCacheInternalsJob();
+ virtual ~ViewAppCacheInternalsJob();
void AppCacheDone(int rv);
diff --git a/webkit/blob/view_blob_internals_job.h b/webkit/blob/view_blob_internals_job.h
index 547bf40..eee6835 100644
--- a/webkit/blob/view_blob_internals_job.h
+++ b/webkit/blob/view_blob_internals_job.h
@@ -34,7 +34,7 @@ class ViewBlobInternalsJob : public net::URLRequestSimpleJob {
virtual void Kill();
private:
- ~ViewBlobInternalsJob();
+ virtual ~ViewBlobInternalsJob();
void DoWorkAsync();
void GenerateHTML(std::string* out) const;
diff --git a/webkit/glue/weburlloader_impl.h b/webkit/glue/weburlloader_impl.h
index 44e4e1e..4403c17 100644
--- a/webkit/glue/weburlloader_impl.h
+++ b/webkit/glue/weburlloader_impl.h
@@ -13,7 +13,7 @@ namespace webkit_glue {
class WebURLLoaderImpl : public WebKit::WebURLLoader {
public:
WebURLLoaderImpl();
- ~WebURLLoaderImpl();
+ virtual ~WebURLLoaderImpl();
// WebURLLoader methods:
virtual void loadSynchronously(
diff --git a/webkit/plugins/npapi/test/plugin_npobject_lifetime_test.h b/webkit/plugins/npapi/test/plugin_npobject_lifetime_test.h
index 12cf4e2..8365b9b 100644
--- a/webkit/plugins/npapi/test/plugin_npobject_lifetime_test.h
+++ b/webkit/plugins/npapi/test/plugin_npobject_lifetime_test.h
@@ -41,7 +41,7 @@ class NPObjectLifetimeTestInstance2 : public PluginTest {
public:
// Constructor.
NPObjectLifetimeTestInstance2(NPP id, NPNetscapeFuncs *host_functions);
- ~NPObjectLifetimeTestInstance2();
+ virtual ~NPObjectLifetimeTestInstance2();
// NPAPI SetWindow handler.
virtual NPError SetWindow(NPWindow* pNPWindow);
@@ -58,7 +58,7 @@ class NPObjectDeletePluginInNPN_Evaluate : public PluginTest {
public:
// Constructor.
NPObjectDeletePluginInNPN_Evaluate(NPP id, NPNetscapeFuncs *host_functions);
- ~NPObjectDeletePluginInNPN_Evaluate();
+ virtual ~NPObjectDeletePluginInNPN_Evaluate();
// NPAPI SetWindow handler.
virtual NPError SetWindow(NPWindow* pNPWindow);
diff --git a/webkit/plugins/npapi/test/plugin_thread_async_call_test.h b/webkit/plugins/npapi/test/plugin_thread_async_call_test.h
index 2980dbc..6962276 100644
--- a/webkit/plugins/npapi/test/plugin_thread_async_call_test.h
+++ b/webkit/plugins/npapi/test/plugin_thread_async_call_test.h
@@ -18,7 +18,7 @@ namespace NPAPIClient {
class PluginThreadAsyncCallTest : public PluginTest {
public:
PluginThreadAsyncCallTest(NPP id, NPNetscapeFuncs *host_functions);
- ~PluginThreadAsyncCallTest();
+ virtual ~PluginThreadAsyncCallTest();
virtual NPError New(uint16 mode, int16 argc, const char* argn[],
const char* argv[], NPSavedData* saved);
diff --git a/webkit/plugins/npapi/webplugin_delegate_impl.h b/webkit/plugins/npapi/webplugin_delegate_impl.h
index 039bb23..b5156e3 100644
--- a/webkit/plugins/npapi/webplugin_delegate_impl.h
+++ b/webkit/plugins/npapi/webplugin_delegate_impl.h
@@ -201,7 +201,7 @@ class WebPluginDelegateImpl : public WebPluginDelegate {
WebPluginDelegateImpl(gfx::PluginWindowHandle containing_view,
PluginInstance *instance);
- ~WebPluginDelegateImpl();
+ virtual ~WebPluginDelegateImpl();
// Called by Initialize() for platform-specific initialization.
// If this returns false, the plugin shouldn't be started--see Initialize().
diff --git a/webkit/plugins/ppapi/ppb_audio_impl.h b/webkit/plugins/ppapi/ppb_audio_impl.h
index 201193f..060b8bf 100644
--- a/webkit/plugins/ppapi/ppb_audio_impl.h
+++ b/webkit/plugins/ppapi/ppb_audio_impl.h
@@ -31,7 +31,7 @@ class PPB_AudioConfig_Impl : public Resource,
public:
// Note that you must call Init (on AudioConfigImpl) before using this class.
PPB_AudioConfig_Impl(PluginInstance* instance);
- ~PPB_AudioConfig_Impl();
+ virtual ~PPB_AudioConfig_Impl();
// ResourceObjectBase overrides.
virtual ::ppapi::thunk::PPB_AudioConfig_API* AsAudioConfig_API() OVERRIDE;
diff --git a/webkit/quota/usage_tracker.h b/webkit/quota/usage_tracker.h
index 52bbffc..8a9dfb9 100644
--- a/webkit/quota/usage_tracker.h
+++ b/webkit/quota/usage_tracker.h
@@ -28,7 +28,7 @@ class ClientUsageTracker;
class UsageTracker : public QuotaTaskObserver {
public:
UsageTracker(const QuotaClientList& clients, StorageType type);
- ~UsageTracker();
+ virtual ~UsageTracker();
StorageType type() const { return type_; }
ClientUsageTracker* GetClientTracker(QuotaClient::ID client_id);
diff --git a/webkit/support/simple_database_system.h b/webkit/support/simple_database_system.h
index b6aa9b9..56e6657 100644
--- a/webkit/support/simple_database_system.h
+++ b/webkit/support/simple_database_system.h
@@ -29,7 +29,7 @@ class SimpleDatabaseSystem : public webkit_database::DatabaseTracker::Observer,
static SimpleDatabaseSystem* GetInstance();
SimpleDatabaseSystem();
- ~SimpleDatabaseSystem();
+ virtual ~SimpleDatabaseSystem();
// WebDatabaseObserver implementation, these are called on the script
// execution context thread on which the database is opened. This may be
diff --git a/webkit/tools/test_shell/layout_test_controller.h b/webkit/tools/test_shell/layout_test_controller.h
index 136b6a1..3ada264 100644
--- a/webkit/tools/test_shell/layout_test_controller.h
+++ b/webkit/tools/test_shell/layout_test_controller.h
@@ -27,7 +27,7 @@ class LayoutTestController : public CppBoundClass {
// Builds the property and method lists needed to bind this class to a JS
// object.
LayoutTestController(TestShell* shell);
- ~LayoutTestController();
+ virtual ~LayoutTestController();
// By default, tests end when page load is complete. These methods are used
// to delay the completion of the test until notifyDone is called.
diff --git a/webkit/tools/test_shell/test_shell_request_context.h b/webkit/tools/test_shell/test_shell_request_context.h
index cc74803..0f987c6 100644
--- a/webkit/tools/test_shell/test_shell_request_context.h
+++ b/webkit/tools/test_shell/test_shell_request_context.h
@@ -43,7 +43,7 @@ class TestShellRequestContext : public net::URLRequestContext {
}
private:
- ~TestShellRequestContext();
+ virtual ~TestShellRequestContext();
void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode,
bool no_proxy);
diff --git a/webkit/tools/test_shell/test_shell_webkit_init.h b/webkit/tools/test_shell/test_shell_webkit_init.h
index 8795b46..a4e8f27 100644
--- a/webkit/tools/test_shell/test_shell_webkit_init.h
+++ b/webkit/tools/test_shell/test_shell_webkit_init.h
@@ -32,7 +32,7 @@
class TestShellWebKitInit : public webkit_glue::WebKitClientImpl {
public:
explicit TestShellWebKitInit(bool layout_test_mode);
- ~TestShellWebKitInit();
+ virtual ~TestShellWebKitInit();
virtual WebKit::WebMimeRegistry* mimeRegistry();
virtual WebKit::WebClipboard* clipboard();