diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-04 22:21:26 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-04 22:21:26 +0000 |
commit | 0a8d4275e94f160a53df92b8f9af2605b640c8f2 (patch) | |
tree | 09c723f7f266e85870319aea3073ee9679198ae8 /content/ppapi_plugin | |
parent | 954bdb527e04da11fd31da6069231874a62954e9 (diff) | |
download | chromium_src-0a8d4275e94f160a53df92b8f9af2605b640c8f2.zip chromium_src-0a8d4275e94f160a53df92b8f9af2605b640c8f2.tar.gz chromium_src-0a8d4275e94f160a53df92b8f9af2605b640c8f2.tar.bz2 |
Cleanup: Fix some lint errors in content/.
Review URL: https://chromiumcodereview.appspot.com/11740038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc index 106a69f..e18ece4 100644 --- a/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc +++ b/content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc @@ -36,7 +36,8 @@ typedef struct CGFont* CGFontRef; namespace content { -class PpapiWebKitPlatformSupportImpl::SandboxSupport : public WebSandboxSupport { +class PpapiWebKitPlatformSupportImpl::SandboxSupport + : public WebSandboxSupport { public: virtual ~SandboxSupport() {} @@ -179,7 +180,8 @@ unsigned long long PpapiWebKitPlatformSupportImpl::visitedLinkHash( return 0; } -bool PpapiWebKitPlatformSupportImpl::isLinkVisited(unsigned long long link_hash) { +bool PpapiWebKitPlatformSupportImpl::isLinkVisited( + unsigned long long link_hash) { NOTREACHED(); return false; } @@ -204,7 +206,8 @@ WebKit::WebString PpapiWebKitPlatformSupportImpl::cookies( return WebKit::WebString(); } -void PpapiWebKitPlatformSupportImpl::prefetchHostName(const WebKit::WebString&) { +void PpapiWebKitPlatformSupportImpl::prefetchHostName( + const WebKit::WebString&) { NOTREACHED(); } |