1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_
#define CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_
// This file provides declarations and stub definitions for classes we encouter
// during the porting effort. It is not meant to be permanent, and classes will
// be removed from here as they are fleshed out more completely.
#include <string>
#include "base/basictypes.h"
#include "base/logging.h"
#include "base/ref_counted.h"
#include "build/build_config.h"
#include "chrome/browser/renderer_host/render_view_host_delegate.h"
#if !defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX)
// For download_util::DragDownload
#include "base/gfx/native_widget_types.h"
#include "third_party/skia/include/core/SkBitmap.h"
#endif
class CancelableTask;
class CommandLine;
class DownloadItem;
class TabContents;
struct ViewHostMsg_DidPrintPage_Params;
namespace gfx {
class Rect;
class Widget;
}
namespace IPC {
class Message;
}
//---------------------------------------------------------------------------
// These stubs are for Browser_main()
void InstallJankometer(const CommandLine&);
//---------------------------------------------------------------------------
// These stubs are for BrowserProcessImpl
class ViewMsg_Print_Params;
// Printing is all (obviously) not implemented.
// http://code.google.com/p/chromium/issues/detail?id=9847
namespace printing {
class PrintViewManager : public RenderViewHostDelegate::Printing {
public:
PrintViewManager(TabContents&) { }
void Stop() { NOTIMPLEMENTED(); }
void Destroy() { }
bool OnRenderViewGone(RenderViewHost*) {
NOTIMPLEMENTED();
return true; // Assume for now that all renderer crashes are important.
}
// RenderViewHostDelegate::Printing implementation.
virtual void DidGetPrintedPagesCount(int cookie, int number_pages) {
NOTIMPLEMENTED();
}
virtual void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params) {
NOTIMPLEMENTED();
}
};
class PrintingContext {
public:
enum Result { OK, CANCEL, FAILED };
};
class PrintSettings {
public:
void RenderParams(ViewMsg_Print_Params* params) const { NOTIMPLEMENTED(); }
int dpi() const { NOTIMPLEMENTED(); return 92; }
};
class PrinterQuery : public base::RefCountedThreadSafe<PrinterQuery> {
public:
enum GetSettingsAskParam {
DEFAULTS,
ASK_USER,
};
void GetSettings(GetSettingsAskParam ask_user_for_settings,
int parent_window,
int expected_page_count,
bool has_selection,
CancelableTask* callback) { NOTIMPLEMENTED(); }
PrintingContext::Result last_status() { return PrintingContext::FAILED; }
const PrintSettings& settings() { NOTIMPLEMENTED(); return settings_; }
int cookie() { NOTIMPLEMENTED(); return 0; }
void StopWorker() { NOTIMPLEMENTED(); }
private:
PrintSettings settings_;
};
class PrintJobManager {
public:
void OnQuit() { }
void PopPrinterQuery(int document_cookie, scoped_refptr<PrinterQuery>* job) {
NOTIMPLEMENTED();
}
void QueuePrinterQuery(PrinterQuery* job) { NOTIMPLEMENTED(); }
};
} // namespace printing
//---------------------------------------------------------------------------
// These stubs are for Browser
#if !defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX)
namespace download_util {
void DragDownload(const DownloadItem* download,
SkBitmap* icon,
gfx::NativeView view);
} // namespace download_util
#endif
#if defined(OS_MACOSX)
class DockInfo {
public:
bool GetNewWindowBounds(gfx::Rect*, bool*) const;
void AdjustOtherWindowBounds() const;
};
#else
#endif
//---------------------------------------------------------------------------
// These stubs are for TabContents
class BaseDragSource {
};
#endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_
|