Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: content/shell/shell_browser_main_parts_android.h

Issue 10035034: Implement the skeleton of an android content shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove tabs from content.xml Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_SHELL_SHELL_BROWSER_MAIN_PARTS_ANDROID_H_
6 #define CONTENT_SHELL_SHELL_BROWSER_MAIN_PARTS_ANDROID_H_
7
8 #include "base/message_loop.h"
9 #include "content/shell/shell_browser_main_parts.h"
10
11 namespace content {
12
13 class ShellBrowserMainPartsAndroid : public ShellBrowserMainParts {
14 public:
15 explicit ShellBrowserMainPartsAndroid(
16 const content::MainFunctionParams& parameters);
17 virtual ~ShellBrowserMainPartsAndroid();
18
19 // content::BrowserMainParts overrides.
20 virtual void PreEarlyInitialization() OVERRIDE;
21 virtual MessageLoop* GetMainMessageLoop() OVERRIDE;
22 virtual void PostMainMessageLoopStart() OVERRIDE;
23
24 private:
25 scoped_ptr<MessageLoop> main_message_loop_;
26
27 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainPartsAndroid);
28 };
29
30 } // namespace content
31
32 #endif // CONTENT_SHELL_SHELL_BROWSER_MAIN_PARTS_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698