2013-04-15 16:25:08 +00:00
|
|
|
// 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_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
|
|
|
#define ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
|
|
|
|
2013-04-20 13:52:46 +00:00
|
|
|
#include "base/memory/scoped_ptr.h"
|
2013-04-15 16:25:08 +00:00
|
|
|
#include "brightray/browser/browser_context.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class AtomBrowserContext : public brightray::BrowserContext {
|
|
|
|
public:
|
|
|
|
AtomBrowserContext();
|
|
|
|
virtual ~AtomBrowserContext();
|
|
|
|
|
|
|
|
static AtomBrowserContext* Get();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|