
As of http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20120716/061102.html the warning finds more bugs. Fix them. BUG=none TEST=none TBR=owners Review URL: https://chromiumcodereview.appspot.com/10800052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147666 0039d316-1c4b-4281-b951-d872f2087c98
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CONTENT_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
|
|
#define CONTENT_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
|
|
|
|
#include "webkit/appcache/web_application_cache_host_impl.h"
|
|
|
|
class RenderViewImpl;
|
|
|
|
class RendererWebApplicationCacheHostImpl
|
|
: public appcache::WebApplicationCacheHostImpl {
|
|
public:
|
|
RendererWebApplicationCacheHostImpl(
|
|
RenderViewImpl* render_view,
|
|
WebKit::WebApplicationCacheHostClient* client,
|
|
appcache::AppCacheBackend* backend);
|
|
|
|
// appcache::WebApplicationCacheHostImpl methods.
|
|
virtual void OnLogMessage(appcache::LogLevel log_level,
|
|
const std::string& message) OVERRIDE;
|
|
virtual void OnContentBlocked(const GURL& manifest_url) OVERRIDE;
|
|
virtual void OnCacheSelected(const appcache::AppCacheInfo& info) OVERRIDE;
|
|
|
|
private:
|
|
RenderViewImpl* GetRenderView();
|
|
|
|
int routing_id_;
|
|
};
|
|
|
|
#endif // CONTENT_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
|