Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "temp_scaffolding_stubs.h" | 5 #include "temp_scaffolding_stubs.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/thread.h" | 8 #include "base/thread.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/singleton.h" | 10 #include "base/singleton.h" |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 void InstallJankometer(const CommandLine&) { | 210 void InstallJankometer(const CommandLine&) { |
| 211 } | 211 } |
| 212 | 212 |
| 213 //-------------------------------------------------------------------------- | 213 //-------------------------------------------------------------------------- |
| 214 | 214 |
| 215 void Browser::Observe(NotificationType type, | 215 void Browser::Observe(NotificationType type, |
| 216 const NotificationSource& source, | 216 const NotificationSource& source, |
| 217 const NotificationDetails& details) { | 217 const NotificationDetails& details) { |
| 218 } | 218 } |
| 219 | 219 |
| 220 LocationBarView* Browser::GetLocationBarView() const { | |
| 221 return window_->GetLocationBarView(); | |
| 222 } | |
| 223 | |
| 224 void Browser::NewWindow() { | 220 void Browser::NewWindow() { |
| 225 Browser::OpenEmptyWindow(NULL); | 221 Browser::OpenEmptyWindow(NULL); |
| 226 } | 222 } |
| 223 | |
| 224 GURL Browser::GetHomePage() { | |
| 225 return GURL("http://www.chromium.org"); | |
|
Ben Goodger (Google)
2009/01/22 18:31:07
dev.chromium.org! ;D
| |
| 226 } | |
| OLD | NEW |