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

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 1652983005: Remove Enumeration Histograms from the Blink Platform API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_blink_histograms_5a
Patch Set: Rebase two new histograms were added today Created 4 years, 10 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 unified diff | Download patch
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 #include "platform/graphics/paint/DrawingRecorder.h" 178 #include "platform/graphics/paint/DrawingRecorder.h"
179 #include "platform/graphics/paint/SkPictureBuilder.h" 179 #include "platform/graphics/paint/SkPictureBuilder.h"
180 #include "platform/graphics/skia/SkiaUtils.h" 180 #include "platform/graphics/skia/SkiaUtils.h"
181 #include "platform/heap/Handle.h" 181 #include "platform/heap/Handle.h"
182 #include "platform/network/ResourceRequest.h" 182 #include "platform/network/ResourceRequest.h"
183 #include "platform/scroll/ScrollTypes.h" 183 #include "platform/scroll/ScrollTypes.h"
184 #include "platform/scroll/ScrollbarTheme.h" 184 #include "platform/scroll/ScrollbarTheme.h"
185 #include "platform/weborigin/KURL.h" 185 #include "platform/weborigin/KURL.h"
186 #include "platform/weborigin/SchemeRegistry.h" 186 #include "platform/weborigin/SchemeRegistry.h"
187 #include "platform/weborigin/SecurityPolicy.h" 187 #include "platform/weborigin/SecurityPolicy.h"
188 #include "public/platform/Platform.h"
189 #include "public/platform/WebFloatPoint.h" 188 #include "public/platform/WebFloatPoint.h"
190 #include "public/platform/WebFloatRect.h" 189 #include "public/platform/WebFloatRect.h"
191 #include "public/platform/WebLayer.h" 190 #include "public/platform/WebLayer.h"
192 #include "public/platform/WebPoint.h" 191 #include "public/platform/WebPoint.h"
193 #include "public/platform/WebRect.h" 192 #include "public/platform/WebRect.h"
194 #include "public/platform/WebSecurityOrigin.h" 193 #include "public/platform/WebSecurityOrigin.h"
195 #include "public/platform/WebSize.h" 194 #include "public/platform/WebSize.h"
196 #include "public/platform/WebSuspendableTask.h" 195 #include "public/platform/WebSuspendableTask.h"
197 #include "public/platform/WebURLError.h" 196 #include "public/platform/WebURLError.h"
198 #include "public/platform/WebVector.h" 197 #include "public/platform/WebVector.h"
(...skipping 2059 matching lines...) Expand 10 before | Expand all | Expand 10 after
2258 return WebSandboxFlags::None; 2257 return WebSandboxFlags::None;
2259 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags( )); 2258 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags( ));
2260 } 2259 }
2261 2260
2262 void WebLocalFrameImpl::forceSandboxFlags(WebSandboxFlags flags) 2261 void WebLocalFrameImpl::forceSandboxFlags(WebSandboxFlags flags)
2263 { 2262 {
2264 frame()->loader().forceSandboxFlags(static_cast<SandboxFlags>(flags)); 2263 frame()->loader().forceSandboxFlags(static_cast<SandboxFlags>(flags));
2265 } 2264 }
2266 2265
2267 } // namespace blink 2266 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698