| 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/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/thread.h" | 9 #include "base/thread.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "chrome/browser/shell_integration.h" | 25 #include "chrome/browser/shell_integration.h" |
| 26 #include "chrome/browser/tab_contents/web_contents.h" | 26 #include "chrome/browser/tab_contents/web_contents.h" |
| 27 #include "chrome/common/chrome_constants.h" | 27 #include "chrome/common/chrome_constants.h" |
| 28 #include "chrome/common/chrome_paths.h" | 28 #include "chrome/common/chrome_paths.h" |
| 29 #include "chrome/common/gfx/chrome_font.h" | 29 #include "chrome/common/gfx/chrome_font.h" |
| 30 #include "chrome/common/notification_service.h" | 30 #include "chrome/common/notification_service.h" |
| 31 #include "chrome/common/pref_service.h" | 31 #include "chrome/common/pref_service.h" |
| 32 #include "chrome/common/process_watcher.h" | 32 #include "chrome/common/process_watcher.h" |
| 33 #include "chrome/common/resource_bundle.h" | 33 #include "chrome/common/resource_bundle.h" |
| 34 #include "net/url_request/url_request_context.h" | 34 #include "net/url_request/url_request_context.h" |
| 35 #include "webkit/glue/webcursor.h" |
| 35 | 36 |
| 36 // static | 37 // static |
| 37 size_t SessionRestore::num_tabs_to_load_ = 0; | 38 size_t SessionRestore::num_tabs_to_load_ = 0; |
| 38 | 39 |
| 39 //-------------------------------------------------------------------------- | 40 //-------------------------------------------------------------------------- |
| 40 | 41 |
| 41 UserDataManager* UserDataManager::instance_ = NULL; | 42 UserDataManager* UserDataManager::instance_ = NULL; |
| 42 | 43 |
| 43 UserDataManager* UserDataManager::Create() { | 44 UserDataManager* UserDataManager::Create() { |
| 44 DCHECK(!instance_); | 45 DCHECK(!instance_); |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 #if defined(OS_MACOSX) | 335 #if defined(OS_MACOSX) |
| 335 WebCursor::WebCursor() { | 336 WebCursor::WebCursor() { |
| 336 } | 337 } |
| 337 WebCursor::~WebCursor() { | 338 WebCursor::~WebCursor() { |
| 338 } | 339 } |
| 339 bool WebCursor::Deserialize(const Pickle* pickle, void** iter) { | 340 bool WebCursor::Deserialize(const Pickle* pickle, void** iter) { |
| 340 NOTIMPLEMENTED(); | 341 NOTIMPLEMENTED(); |
| 341 return false; | 342 return false; |
| 342 } | 343 } |
| 343 #endif | 344 #endif |
| OLD | NEW |