2013-06-24 20:57:05 +02:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#include "libcef/common/content_client.h"
|
2015-11-26 03:53:12 +01:00
|
|
|
#include "libcef/common/net/net_resource_provider.h"
|
2013-06-24 20:57:05 +02:00
|
|
|
|
|
|
|
base::StringPiece NetResourceProvider(int key) {
|
|
|
|
return CefContentClient::Get()->GetDataResource(key, ui::SCALE_FACTOR_NONE);
|
|
|
|
}
|