OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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 #include "chrome/browser/chrome_browser_parts_aura.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 ChromeBrowserPartsAura::ChromeBrowserPartsAura() |
| 10 : content::BrowserMainParts() { |
| 11 } |
| 12 |
| 13 void ChromeBrowserPartsAura::PreEarlyInitialization() { |
| 14 NOTIMPLEMENTED(); |
| 15 } |
| 16 |
| 17 bool ChromeBrowserPartsAura::MainMessageLoopRun(int* result_code) { |
| 18 return false; |
| 19 } |
| 20 |
| 21 void ChromeBrowserPartsAura::PostMainMessageLoopStart() { |
| 22 NOTIMPLEMENTED(); |
| 23 } |
| 24 |
| 25 void ChromeBrowserPartsAura::ShowMessageBox(const char* message) { |
| 26 LOG(ERROR) << "ShowMessageBox (not implemented): " << message; |
| 27 NOTIMPLEMENTED(); |
| 28 } |
OLD | NEW |