summaryrefslogtreecommitdiffstats
path: root/android_webview/browser/aw_browser_main_parts.h
blob: fc2b64004be129d50272fec08b6d234ead476085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// 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 file.

#ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_MAIN_PARTS_H_
#define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_MAIN_PARTS_H_

#include "content/public/browser/browser_main_parts.h"

namespace android_webview {

// TODO(joth): Remove this method when when http://crbug.com/161864 is closed.
bool UseCompositorDirectDraw();

class AwBrowserContext;

class AwBrowserMainParts : public content::BrowserMainParts {
 public:
  AwBrowserMainParts(AwBrowserContext* browser_context);
  virtual ~AwBrowserMainParts();

  // Overriding methods from content::BrowserMainParts.
  virtual void PreEarlyInitialization() OVERRIDE;
  virtual int PreCreateThreads() OVERRIDE;
  virtual bool MainMessageLoopRun(int* result_code) OVERRIDE;

 private:
  // Android specific UI MessageLoop.
  scoped_ptr<MessageLoop> main_message_loop_;

  AwBrowserContext* browser_context_;  // weak

  DISALLOW_COPY_AND_ASSIGN(AwBrowserMainParts);
};

}  // namespace android_webview

#endif  // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_MAIN_PARTS_H_