summaryrefslogtreecommitdiffstats
path: root/chrome/common/temp_scaffolding_stubs.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/temp_scaffolding_stubs.h')
-rw-r--r--chrome/common/temp_scaffolding_stubs.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h
index 05fdf0e..5179ffa 100644
--- a/chrome/common/temp_scaffolding_stubs.h
+++ b/chrome/common/temp_scaffolding_stubs.h
@@ -628,6 +628,15 @@ LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info,
class ExternalProtocolHandler {
public:
+ enum BlockState {
+ DONT_BLOCK,
+ BLOCK,
+ UNKNOWN,
+ };
+ static BlockState GetBlockState(const std::wstring& scheme) {
+ NOTIMPLEMENTED();
+ return UNKNOWN;
+ }
static void LaunchUrl(const GURL& url, int render_process_host_id,
int tab_contents_id) {
NOTIMPLEMENTED();
@@ -663,4 +672,12 @@ class FontsLanguagesWindowView {
void SelectLanguagesTab() { NOTIMPLEMENTED(); }
};
+class HistoryTabUI {
+ public:
+ static const GURL GetHistoryURLWithSearchText(const std::wstring& text) {
+ NOTIMPLEMENTED();
+ return GURL();
+ }
+};
+
#endif // CHROME_COMMON_TEMP_SCAFFOLDING_STUBS_H_