Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(660)

Side by Side Diff: chrome/common/temp_scaffolding_stubs.cc

Issue 20059: Commiting the changes from my previous cl that are specific to not including ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/temp_scaffolding_stubs.h ('k') | chrome/plugin/chrome_plugin_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/temp_scaffolding_stubs.h ('k') | chrome/plugin/chrome_plugin_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698