blob: 625bdacf4033113b18eb9f83467925564ce4bb3f [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_EXTENSIONS_SYSTEM_DISPLAY_DISPLAY_INFO_PROVIDER_AURA_H_
#define CHROME_BROWSER_EXTENSIONS_SYSTEM_DISPLAY_DISPLAY_INFO_PROVIDER_AURA_H_
#include "extensions/browser/api/system_display/display_info_provider.h"
namespace extensions {
class DisplayInfoProviderAura : public DisplayInfoProvider {
public:
DisplayInfoProviderAura();
DisplayInfoProviderAura(const DisplayInfoProviderAura&) = delete;
DisplayInfoProviderAura& operator=(const DisplayInfoProviderAura&) = delete;
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_SYSTEM_DISPLAY_DISPLAY_INFO_PROVIDER_AURA_H_