Print Preview: Changing displayed error message when PDF Viewer is missing.
[chromium-blink-merge.git] / chrome / browser / mock_browsing_data_appcache_helper.h
blobc6119b80c83812d4df7568a2df75abfe92bbeab2
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.
5 #ifndef CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
6 #define CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_
7 #pragma once
9 #include "base/callback.h"
10 #include "chrome/browser/browsing_data_appcache_helper.h"
12 class MockBrowsingDataAppCacheHelper
13 : public BrowsingDataAppCacheHelper {
14 public:
15 explicit MockBrowsingDataAppCacheHelper(Profile* profile);
17 virtual void StartFetching(Callback0::Type* completion_callback);
18 virtual void CancelNotification();
19 virtual void DeleteAppCacheGroup(const GURL& manifest_url);
21 private:
22 virtual ~MockBrowsingDataAppCacheHelper();
25 #endif // CHROME_BROWSER_MOCK_BROWSING_DATA_APPCACHE_HELPER_H_