summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main_extra_parts.cc
diff options
context:
space:
mode:
authorcpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-16 21:15:46 +0000
committercpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-16 21:15:46 +0000
commit7b35be2ef7cdf7f52805f70464a269d8ac995385 (patch)
tree5c41c66579f72c6ec79dd78e3ab2ce1a31f8239f /chrome/browser/chrome_browser_main_extra_parts.cc
parent3727e08519cb1d6329378d94307eec23ae506471 (diff)
downloadchromium_src-7b35be2ef7cdf7f52805f70464a269d8ac995385.zip
chromium_src-7b35be2ef7cdf7f52805f70464a269d8ac995385.tar.gz
chromium_src-7b35be2ef7cdf7f52805f70464a269d8ac995385.tar.bz2
Revert 110327 - Add ChromeBrowserParts for non main parts.
This reverts the code back to a single instance of BrowserMainParts, with auxillary parts (Gtk, Views, Aura, Touch) implemented from a new base class, ChromeBrowserParts, which has a Chrome specific interface, allowing initialization to be better subdivided. This should fix the notifications auto tests. BUG=103821 TEST=Make sure all tests and autotests run Review URL: http://codereview.chromium.org/8539038 TBR=stevenjb@google.com Review URL: http://codereview.chromium.org/8488015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110350 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main_extra_parts.cc')
-rw-r--r--chrome/browser/chrome_browser_main_extra_parts.cc38
1 files changed, 0 insertions, 38 deletions
diff --git a/chrome/browser/chrome_browser_main_extra_parts.cc b/chrome/browser/chrome_browser_main_extra_parts.cc
deleted file mode 100644
index 3188931..0000000
--- a/chrome/browser/chrome_browser_main_extra_parts.cc
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2011 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.
-
-#include "chrome/browser/chrome_browser_main_extra_parts.h"
-
-ChromeBrowserMainExtraParts::ChromeBrowserMainExtraParts() {
-}
-
-ChromeBrowserMainExtraParts::~ChromeBrowserMainExtraParts() {
-}
-
-void ChromeBrowserMainExtraParts::PreEarlyInitialization() {
-}
-
-void ChromeBrowserMainExtraParts::PostEarlyInitialization() {
-}
-
-void ChromeBrowserMainExtraParts::PreMainMessageLoopStart() {
-}
-
-void ChromeBrowserMainExtraParts::PostMainMessageLoopStart() {
-}
-
-void ChromeBrowserMainExtraParts::ToolkitInitialized() {
-}
-
-void ChromeBrowserMainExtraParts::PostBrowserProcessInit() {
-}
-
-void ChromeBrowserMainExtraParts::PostProfileInitialized() {
-}
-
-void ChromeBrowserMainExtraParts::PreMainMessageLoopRun() {
-}
-
-void ChromeBrowserMainExtraParts::PostMainMessageLoopRun() {
-}