diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-10 02:48:27 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-10 02:48:27 +0000 |
commit | 4bcac78e6c353cd9823f559dc8c6181e824e88ce (patch) | |
tree | e14c602e6c08c3d817f4684604b4f35b17c7a27d /chrome/common/temp_scaffolding_stubs.cc | |
parent | 4dfabc88767a14cb40b7b96ac1e1f1912f03391c (diff) | |
download | chromium_src-4bcac78e6c353cd9823f559dc8c6181e824e88ce.zip chromium_src-4bcac78e6c353cd9823f559dc8c6181e824e88ce.tar.gz chromium_src-4bcac78e6c353cd9823f559dc8c6181e824e88ce.tar.bz2 |
Revert basically everything I've done today as it fails mysteriously
and I lack the patience to diagnose why mac doesn't link in libjpeg.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9447 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/temp_scaffolding_stubs.cc')
-rw-r--r-- | chrome/common/temp_scaffolding_stubs.cc | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.cc b/chrome/common/temp_scaffolding_stubs.cc index 0aff7b7..bdee164 100644 --- a/chrome/common/temp_scaffolding_stubs.cc +++ b/chrome/common/temp_scaffolding_stubs.cc @@ -12,8 +12,6 @@ #include "base/singleton.h" #include "base/task.h" #include "build/build_config.h" -#include "chrome/browser/autocomplete/autocomplete.h" -#include "chrome/browser/autocomplete/history_url_provider.h" #include "chrome/browser/browser.h" #include "chrome/browser/browser_shutdown.h" #include "chrome/browser/cache_manager_host.h" @@ -37,7 +35,6 @@ #include "webkit/glue/webcursor.h" #include "webkit/glue/webkit_glue.h" - // static size_t SessionRestore::num_tabs_to_load_ = 0; @@ -369,98 +366,3 @@ bool ClipboardIsFormatAvailable(Clipboard::FormatType format) { } // webkit_glue - -//-------------------------------------------------------------------------- -size_t AutocompleteProvider::max_matches_ = 42; -size_t AutocompleteResult::max_matches_ = 42; - -// static -std::string AutocompleteInput::TypeToString(Type type) { - NOTIMPLEMENTED(); - return ""; -} - -AutocompleteMatch::AutocompleteMatch(AutocompleteProvider* provider, - int relevance, - bool deletable, - Type type) { - NOTIMPLEMENTED(); -} - -// static -void AutocompleteMatch::ClassifyLocationInString( - size_t match_location, - size_t match_length, - size_t overall_length, - int style, - ACMatchClassifications* classifications) { - NOTIMPLEMENTED(); -} - -// static -std::string AutocompleteMatch::TypeToString(Type type) { - NOTIMPLEMENTED(); - return ""; -} - -AutocompleteProvider::~AutocompleteProvider() { - NOTIMPLEMENTED(); -} - -std::wstring AutocompleteProvider::StringForURLDisplay(const GURL& url, - bool check_accept_lang) { - NOTIMPLEMENTED(); - return L""; -} - -void HistoryURLProvider::ExecuteWithDB(history::HistoryBackend* backend, - history::URLDatabase* db, - HistoryURLProviderParams* params) { - NOTIMPLEMENTED(); -} - -//-------------------------------------------------------------------------- -namespace bookmark_utils { - -struct TitleMatch { - void* undefined; -}; - -void GetBookmarksMatchingText(BookmarkModel* model, - const std::wstring& text, - size_t max_count, - std::vector<TitleMatch>* matches) { - NOTIMPLEMENTED(); -} - -bool MoreRecentlyAdded(BookmarkNode* n1, BookmarkNode* n2) { - NOTIMPLEMENTED(); - return false; -} - -std::vector<BookmarkNode*> GetMostRecentlyModifiedGroups(BookmarkModel* model, - size_t max_count) { - NOTIMPLEMENTED(); - return std::vector<BookmarkNode*>(); -} - - -void GetBookmarksContainingText(BookmarkModel* model, - const std::wstring& text, - size_t max_count, - std::vector<BookmarkNode*>* nodes) { - NOTIMPLEMENTED(); -} - -bool DoesBookmarkContainText(BookmarkNode* node, const std::wstring& text) { - NOTIMPLEMENTED(); - return false; -} - -void GetMostRecentlyAddedEntries(BookmarkModel* model, - size_t count, - std::vector<BookmarkNode*>* nodes) { - NOTIMPLEMENTED(); -} - -} // bookmark_utils |