Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3063)

Unified Diff: content/renderer/appcache_frontend_impl.h

Issue 22410007: Move appcache_frontend_impl.* to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698