diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-14 00:44:39 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-14 00:44:39 +0000 |
commit | e4be2dd25b1883bad7bed358e52e04f01c6e6f78 (patch) | |
tree | 842b39b7ea3547a97e07e2d4dcbb4795020c435c /chrome/browser/remoting | |
parent | 6415176be8ad6b36d4adafa1c8e76aa89c5ca17c (diff) | |
download | chromium_src-e4be2dd25b1883bad7bed358e52e04f01c6e6f78.zip chromium_src-e4be2dd25b1883bad7bed358e52e04f01c6e6f78.tar.gz chromium_src-e4be2dd25b1883bad7bed358e52e04f01c6e6f78.tar.bz2 |
Deinline even more destructors.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/5794003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69084 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/remoting')
-rw-r--r-- | chrome/browser/remoting/remoting_resources_source.cc | 5 | ||||
-rw-r--r-- | chrome/browser/remoting/remoting_resources_source.h | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/remoting/remoting_resources_source.cc b/chrome/browser/remoting/remoting_resources_source.cc index 1af7a2a9..9057e1d 100644 --- a/chrome/browser/remoting/remoting_resources_source.cc +++ b/chrome/browser/remoting/remoting_resources_source.cc @@ -113,6 +113,11 @@ void RemotingResourcesSource::StartDataRequest(const std::string& path_raw, SendResponse(request_id, html_bytes); } +std::string RemotingResourcesSource::GetMimeType( + const std::string& path) const { + return "text/html"; +} + std::string RemotingResourcesSource::GetLocalizedUrl( const std::string& url) const { GURL original_url(url); diff --git a/chrome/browser/remoting/remoting_resources_source.h b/chrome/browser/remoting/remoting_resources_source.h index 96d1b4d..4d73d8e 100644 --- a/chrome/browser/remoting/remoting_resources_source.h +++ b/chrome/browser/remoting/remoting_resources_source.h @@ -13,9 +13,7 @@ class RemotingResourcesSource : public ChromeURLDataManager::DataSource { bool is_off_the_record, int request_id); - virtual std::string GetMimeType(const std::string& path) const { - return "text/html"; - } + virtual std::string GetMimeType(const std::string& path) const; static const char kInvalidPasswordHelpUrl[]; static const char kCanNotAccessAccountUrl[]; |