Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5228)

Unified Diff: Source/web/ContextFeaturesClientImpl.h

Issue 474183002: Cleanup namespace usage in Source/web/*.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/CompositionUnderlineVectorBuilder.h ('k') | Source/web/ContextMenuClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ContextFeaturesClientImpl.h
diff --git a/Source/web/ContextFeaturesClientImpl.h b/Source/web/ContextFeaturesClientImpl.h
index 9bc619574dc2b3d904e909c1025be638c62fb21f..8aaefb84a0bbf4d69130e1eb4465637c438b7763 100644
--- a/Source/web/ContextFeaturesClientImpl.h
+++ b/Source/web/ContextFeaturesClientImpl.h
@@ -35,20 +35,20 @@
namespace blink {
-class ContextFeaturesClientImpl FINAL : public blink::ContextFeaturesClient {
+class ContextFeaturesClientImpl FINAL : public ContextFeaturesClient {
public:
static PassOwnPtr<ContextFeaturesClientImpl> create()
{
return adoptPtr(new ContextFeaturesClientImpl());
}
- virtual bool isEnabled(blink::Document*, blink::ContextFeatures::FeatureType, bool defaultValue) OVERRIDE;
- virtual void urlDidChange(blink::Document*) OVERRIDE;
+ virtual bool isEnabled(Document*, ContextFeatures::FeatureType, bool defaultValue) OVERRIDE;
+ virtual void urlDidChange(Document*) OVERRIDE;
private:
ContextFeaturesClientImpl() { }
- bool askIfIsEnabled(blink::Document*, blink::ContextFeatures::FeatureType, bool defaultValue);
+ bool askIfIsEnabled(Document*, ContextFeatures::FeatureType, bool defaultValue);
};
} // namespace blink
« no previous file with comments | « Source/web/CompositionUnderlineVectorBuilder.h ('k') | Source/web/ContextMenuClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698