Initial commit

This commit is contained in:
Adam Roben 2013-03-13 15:12:05 -04:00
commit e451d92121
29 changed files with 1359 additions and 0 deletions

View file

@ -0,0 +1,39 @@
// Copyright (c) 2012 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-CHROMIUM file.
#ifndef __brightray__browser_client__
#define __brightray__browser_client__
#include "content/public/browser/content_browser_client.h"
namespace brightray {
class BrowserContext;
class BrowserMainParts;
class BrowserClient : public content::ContentBrowserClient {
public:
BrowserClient();
~BrowserClient();
BrowserContext* browser_context();
BrowserMainParts* browser_main_parts() { return browser_main_parts_.get(); }
protected:
// Subclasses should override this to provide their own BrowserMainParts implementation. The
// lifetime of the returned instance is managed by the caller.
virtual BrowserMainParts* OverrideCreateBrowserMainParts(const content::MainFunctionParams&);
private:
virtual content::BrowserMainParts* CreateBrowserMainParts(const content::MainFunctionParams&) OVERRIDE;
virtual net::URLRequestContextGetter* CreateRequestContext(content::BrowserContext*, content::ProtocolHandlerMap*) OVERRIDE;
scoped_ptr<BrowserMainParts> browser_main_parts_;
DISALLOW_COPY_AND_ASSIGN(BrowserClient);
};
}
#endif /* defined(__brightray__browser_client__) */