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

Unified Diff: content/child/appcache/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: rebase 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
« no previous file with comments | « content/child/appcache/appcache_dispatcher.cc ('k') | content/child/appcache/appcache_frontend_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/appcache/appcache_frontend_impl.h
diff --git a/webkit/renderer/appcache/appcache_frontend_impl.h b/content/child/appcache/appcache_frontend_impl.h
similarity index 51%
rename from webkit/renderer/appcache/appcache_frontend_impl.h
rename to content/child/appcache/appcache_frontend_impl.h
index 42ba745edc31cc0253052b20a6f223fbc60cc020..85f9c68ea3f342c4407f4f3b87b40e1ea46edee8 100644
--- a/webkit/renderer/appcache/appcache_frontend_impl.h
+++ b/content/child/appcache/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_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
+#define CONTENT_CHILD_APPCACHE_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_CHILD_APPCACHE_APPCACHE_FRONTEND_IMPL_H_
« no previous file with comments | « content/child/appcache/appcache_dispatcher.cc ('k') | content/child/appcache/appcache_frontend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698