| Index: content/public/browser/browser_main_parts.h
|
| ===================================================================
|
| --- content/public/browser/browser_main_parts.h (revision 119665)
|
| +++ content/public/browser/browser_main_parts.h (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// 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.
|
|
|
| @@ -10,6 +10,8 @@
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| +class MessageLoop;
|
| +
|
| namespace content {
|
|
|
| // This class contains different "stages" to be executed by |BrowserMain()|,
|
| @@ -60,6 +62,10 @@
|
|
|
| virtual void PreMainMessageLoopStart() = 0;
|
|
|
| + // Return the main message loop object or NULL to use the default message
|
| + // loop object.
|
| + virtual MessageLoop* GetMainMessageLoop() = 0;
|
| +
|
| virtual void PostMainMessageLoopStart() = 0;
|
|
|
| // Allows an embedder to do any extra toolkit initialization.
|
|
|