| Index: content/renderer/appcache_frontend_impl.h
|
| diff --git a/webkit/renderer/appcache/appcache_frontend_impl.h b/content/renderer/appcache_frontend_impl.h
|
| similarity index 51%
|
| rename from webkit/renderer/appcache/appcache_frontend_impl.h
|
| rename to content/renderer/appcache_frontend_impl.h
|
| index 42ba745edc31cc0253052b20a6f223fbc60cc020..38cf89b1f9d0889283bd3e7b96c62f903a3bf2bb 100644
|
| --- a/webkit/renderer/appcache/appcache_frontend_impl.h
|
| +++ b/content/renderer/appcache_frontend_impl.h
|
| @@ -2,36 +2,33 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef WEBKIT_RENDERER_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
|
| -#define WEBKIT_RENDERER_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
|
| -
|
| -#include <string>
|
| -#include <vector>
|
| +#ifndef CONTENT_RENDERER_APPCACHE_FRONTEND_IMPL_H_
|
| +#define CONTENT_RENDERER_APPCACHE_FRONTEND_IMPL_H_
|
|
|
| #include "webkit/common/appcache/appcache_interfaces.h"
|
| -#include "webkit/renderer/webkit_storage_renderer_export.h"
|
|
|
| -namespace appcache {
|
| +namespace content {
|
|
|
| -class WEBKIT_STORAGE_RENDERER_EXPORT AppCacheFrontendImpl
|
| - : public AppCacheFrontend {
|
| +class AppCacheFrontendImpl : public appcache::AppCacheFrontend {
|
| public:
|
| - virtual void OnCacheSelected(
|
| - int host_id, const appcache::AppCacheInfo& info) OVERRIDE;
|
| + virtual void OnCacheSelected(int host_id,
|
| + const appcache::AppCacheInfo& info) OVERRIDE;
|
| virtual void OnStatusChanged(const std::vector<int>& host_ids,
|
| - Status status) OVERRIDE;
|
| + appcache::Status status) OVERRIDE;
|
| virtual void OnEventRaised(const std::vector<int>& host_ids,
|
| - EventID event_id) OVERRIDE;
|
| + appcache::EventID event_id) OVERRIDE;
|
| virtual void OnProgressEventRaised(const std::vector<int>& host_ids,
|
| const GURL& url,
|
| - int num_total, int num_complete) OVERRIDE;
|
| + int num_total,
|
| + int num_complete) OVERRIDE;
|
| virtual void OnErrorEventRaised(const std::vector<int>& host_ids,
|
| const std::string& message) OVERRIDE;
|
| - virtual void OnLogMessage(int host_id, LogLevel log_level,
|
| + virtual void OnLogMessage(int host_id,
|
| + appcache::LogLevel log_level,
|
| const std::string& message) OVERRIDE;
|
| virtual void OnContentBlocked(int host_id, const GURL& manifest_url) OVERRIDE;
|
| };
|
|
|
| -} // namespace
|
| +} // namespace content
|
|
|
| -#endif // WEBKIT_RENDERER_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
|
| +#endif // CONTENT_RENDERER_APPCACHE_FRONTEND_IMPL_H_
|
|
|