cef/libcef/browser/browser_pref_store.h
Marshall Greenblatt eef89ccdd3 Update to Chromium revision 40af916d (#303546).
- Standardize usage of virtual/override specifiers in CEF internals (see http://crbug.com/417463).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1903 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
2014-11-12 19:25:15 +00:00

26 lines
674 B
C++

// Copyright (c) 2013 The Chromium Embedded Framework 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 CEF_LIBCEF_BROWSER_BROWSER_PREF_STORE_H_
#define CEF_LIBCEF_BROWSER_BROWSER_PREF_STORE_H_
#include "base/memory/scoped_ptr.h"
#include "base/prefs/testing_pref_store.h"
class PrefService;
class CefBrowserPrefStore : public TestingPrefStore {
public:
CefBrowserPrefStore();
scoped_ptr<PrefService> CreateService();
protected:
~CefBrowserPrefStore() override;
DISALLOW_COPY_AND_ASSIGN(CefBrowserPrefStore);
};
#endif // CEF_LIBCEF_BROWSER_BROWSER_PREF_STORE_H_