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

Unified Diff: public/web/WebWindowFeatures.h

Issue 454103003: Cleanup namespace usage in public/web/Web[N-Z]*.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 | « public/web/WebUserMediaRequest.h ('k') | public/web/mac/WebSubstringUtil.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebWindowFeatures.h
diff --git a/public/web/WebWindowFeatures.h b/public/web/WebWindowFeatures.h
index 7a67a6b518369879c5b57bebde8bde7f7f47d12a..814eeaafb623878527bf1fcf8cbd5d8a1972e568 100644
--- a/public/web/WebWindowFeatures.h
+++ b/public/web/WebWindowFeatures.h
@@ -84,7 +84,7 @@ struct WebWindowFeatures {
#if BLINK_IMPLEMENTATION
- WebWindowFeatures(const blink::WindowFeatures& f)
+ WebWindowFeatures(const WindowFeatures& f)
: x(f.x)
, xSet(f.xSet)
, y(f.y)
@@ -105,9 +105,9 @@ struct WebWindowFeatures {
{
}
- operator blink::WindowFeatures() const
+ operator WindowFeatures() const
{
- blink::WindowFeatures result;
+ WindowFeatures result;
result.x = x;
result.xSet = xSet;
result.y = y;
« no previous file with comments | « public/web/WebUserMediaRequest.h ('k') | public/web/mac/WebSubstringUtil.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698