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

Side by Side Diff: sky/engine/web/WebLocalFrameImpl.cpp

Issue 758233004: Remove SchemeRegistry and WebSecurityPolicy. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 unified diff | Download patch
« no previous file with comments | « sky/engine/web/BUILD.gn ('k') | sky/engine/web/WebSecurityPolicy.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 #include "sky/engine/platform/UserGestureIndicator.h" 117 #include "sky/engine/platform/UserGestureIndicator.h"
118 #include "sky/engine/platform/clipboard/ClipboardUtilities.h" 118 #include "sky/engine/platform/clipboard/ClipboardUtilities.h"
119 #include "sky/engine/platform/fonts/FontCache.h" 119 #include "sky/engine/platform/fonts/FontCache.h"
120 #include "sky/engine/platform/graphics/GraphicsContext.h" 120 #include "sky/engine/platform/graphics/GraphicsContext.h"
121 #include "sky/engine/platform/graphics/skia/SkiaUtils.h" 121 #include "sky/engine/platform/graphics/skia/SkiaUtils.h"
122 #include "sky/engine/platform/heap/Handle.h" 122 #include "sky/engine/platform/heap/Handle.h"
123 #include "sky/engine/platform/network/ResourceRequest.h" 123 #include "sky/engine/platform/network/ResourceRequest.h"
124 #include "sky/engine/platform/scroll/ScrollTypes.h" 124 #include "sky/engine/platform/scroll/ScrollTypes.h"
125 #include "sky/engine/platform/scroll/Scrollbar.h" 125 #include "sky/engine/platform/scroll/Scrollbar.h"
126 #include "sky/engine/platform/weborigin/KURL.h" 126 #include "sky/engine/platform/weborigin/KURL.h"
127 #include "sky/engine/platform/weborigin/SchemeRegistry.h"
128 #include "sky/engine/platform/weborigin/SecurityPolicy.h" 127 #include "sky/engine/platform/weborigin/SecurityPolicy.h"
129 #include "sky/engine/public/platform/Platform.h" 128 #include "sky/engine/public/platform/Platform.h"
130 #include "sky/engine/public/platform/WebFloatPoint.h" 129 #include "sky/engine/public/platform/WebFloatPoint.h"
131 #include "sky/engine/public/platform/WebFloatRect.h" 130 #include "sky/engine/public/platform/WebFloatRect.h"
132 #include "sky/engine/public/platform/WebLayer.h" 131 #include "sky/engine/public/platform/WebLayer.h"
133 #include "sky/engine/public/platform/WebPoint.h" 132 #include "sky/engine/public/platform/WebPoint.h"
134 #include "sky/engine/public/platform/WebRect.h" 133 #include "sky/engine/public/platform/WebRect.h"
135 #include "sky/engine/public/platform/WebSize.h" 134 #include "sky/engine/public/platform/WebSize.h"
136 #include "sky/engine/public/platform/WebURLError.h" 135 #include "sky/engine/public/platform/WebURLError.h"
137 #include "sky/engine/public/platform/WebVector.h" 136 #include "sky/engine/public/platform/WebVector.h"
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 } 698 }
700 699
701 void WebLocalFrameImpl::invalidateAll() const 700 void WebLocalFrameImpl::invalidateAll() const
702 { 701 {
703 ASSERT(frame() && frame()->view()); 702 ASSERT(frame() && frame()->view());
704 FrameView* view = frame()->view(); 703 FrameView* view = frame()->view();
705 view->invalidateRect(view->frameRect()); 704 view->invalidateRect(view->frameRect());
706 } 705 }
707 706
708 } // namespace blink 707 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/web/BUILD.gn ('k') | sky/engine/web/WebSecurityPolicy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698