Initial empty browser.

This commit is contained in:
Cheng Zhao 2013-04-12 09:46:58 +08:00
parent 6ef8875b1e
commit a915cf2e81
25 changed files with 3770 additions and 3 deletions

View file

@ -0,0 +1,25 @@
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ATOM_RENDERER_ATOM_RENDERER_CLIENT_
#define ATOM_RENDERER_ATOM_RENDERER_CLIENT_
#include "content/public/renderer/content_renderer_client.h"
namespace atom {
class AtomRendererClient : public content::ContentRendererClient {
public:
AtomRendererClient();
~AtomRendererClient();
private:
virtual void RenderViewCreated(content::RenderView*) OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(AtomRendererClient);
};
} // namespace atom
#endif // ATOM_RENDERER_ATOM_RENDERER_CLIENT_