Initial empty browser.
This commit is contained in:
parent
6ef8875b1e
commit
a915cf2e81
25 changed files with 3770 additions and 3 deletions
25
renderer/atom_renderer_client.h
Normal file
25
renderer/atom_renderer_client.h
Normal 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_
|
Loading…
Add table
Add a link
Reference in a new issue