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

Side by Side Diff: chrome/renderer/renderer_webapplicationcachehost_impl.h

Issue 1600002: Indicate in the tab UI if appcache creation was blocked by privacy settings. (Closed)
Patch Set: updates Created 10 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
6 #define CHROME_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
7
8 #include "webkit/appcache/web_application_cache_host_impl.h"
9
10 class RenderView;
11
12 class RendererWebApplicationCacheHostImpl
13 : public appcache::WebApplicationCacheHostImpl {
14 public:
15 RendererWebApplicationCacheHostImpl(
16 RenderView* render_view,
17 WebKit::WebApplicationCacheHostClient* client,
18 appcache::AppCacheBackend* backend);
19
20 virtual ~RendererWebApplicationCacheHostImpl();
21
22 // appcache::WebApplicationCacheHostImpl methods.
23 virtual void OnContentBlocked();
24
25 private:
26 bool content_blocked_;
27
28 RenderView* render_view_;
29 };
30
31 #endif // CHROME_RENDERER_RENDERER_WEBAPPLICATIONCACHEHOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698