blob: d18624446d35ea8842c052682d0a71d70de063e7 [file] [log] [blame]
// Copyright 2015 The Chromium 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 COMPONENTS_PRINTING_TEST_PRINT_TEST_CONTENT_RENDERER_CLIENT_H_
#define COMPONENTS_PRINTING_TEST_PRINT_TEST_CONTENT_RENDERER_CLIENT_H_
#include "content/public/renderer/content_renderer_client.h"
namespace printing {
class PrintTestContentRendererClient : public content::ContentRendererClient {
public:
PrintTestContentRendererClient();
~PrintTestContentRendererClient() override;
void RenderViewCreated(content::RenderView* render_view) override;
};
} // namespace printing
#endif // COMPONENTS_PRINTING_TEST_PRINT_TEST_CONTENT_RENDERER_CLIENT_H_