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" |
| 11 #include "build/build_config.h" |
11 #include "chrome/browser/browser.h" | 12 #include "chrome/browser/browser.h" |
12 #include "chrome/browser/browser_shutdown.h" | 13 #include "chrome/browser/browser_shutdown.h" |
13 #include "chrome/browser/history/in_memory_history_backend.h" | 14 #include "chrome/browser/history/in_memory_history_backend.h" |
14 #include "chrome/browser/plugin_service.h" | 15 #include "chrome/browser/plugin_service.h" |
15 #include "chrome/browser/profile_manager.h" | 16 #include "chrome/browser/profile_manager.h" |
16 #include "chrome/browser/rlz/rlz.h" | 17 #include "chrome/browser/rlz/rlz.h" |
17 #include "chrome/browser/shell_integration.h" | 18 #include "chrome/browser/shell_integration.h" |
18 #include "chrome/common/chrome_constants.h" | 19 #include "chrome/common/chrome_constants.h" |
19 #include "chrome/common/chrome_paths.h" | 20 #include "chrome/common/chrome_paths.h" |
20 #include "chrome/common/pref_service.h" | 21 #include "chrome/common/pref_service.h" |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 | 225 |
225 bool RLZTracker::GetAccessPointRlz(AccessPoint point, std::wstring* rlz) { | 226 bool RLZTracker::GetAccessPointRlz(AccessPoint point, std::wstring* rlz) { |
226 return false; | 227 return false; |
227 } | 228 } |
228 | 229 |
229 bool RLZTracker::RecordProductEvent(Product product, AccessPoint point, | 230 bool RLZTracker::RecordProductEvent(Product product, AccessPoint point, |
230 Event event) { | 231 Event event) { |
231 return false; | 232 return false; |
232 } | 233 } |
233 | 234 |
| 235 #if defined(OS_MACOSX) |
234 // We link this in for now to avoid hauling in all of WebCore (which we will | 236 // We link this in for now to avoid hauling in all of WebCore (which we will |
235 // have to eventually do) | 237 // have to eventually do) |
236 namespace webkit_glue { | 238 namespace webkit_glue { |
237 std::string GetUserAgent(const GURL& url) { | 239 std::string GetUserAgent(const GURL& url) { |
238 return ""; | 240 return ""; |
239 } | 241 } |
| 242 #endif |
| 243 |
| 244 #if defined(OS_LINUX) |
| 245 BrowserWindow* BrowserWindow::CreateBrowserWindow(Browser* browser) { |
| 246 NOTIMPLEMENTED() << "CreateBrowserWindow"; |
| 247 return NULL; |
240 } | 248 } |
| 249 #endif |
OLD | NEW |