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

Side by Side Diff: Source/core/frame/UseCounter.h

Issue 311033003: Implementing mixed content for forms posting to insecure location from secure ones (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Housekeeping a boolean that is not needed any more. Created 6 years, 6 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) 2012 Google, Inc. All rights reserved. 2 * Copyright (C) 2012 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 CSSCharsetRuleEncoding = 426, 427 CSSCharsetRuleEncoding = 426,
428 DocumentSetCharset = 427, 428 DocumentSetCharset = 427,
429 DocumentDefaultCharset = 428, 429 DocumentDefaultCharset = 428,
430 TextEncoderConstructor = 429, 430 TextEncoderConstructor = 429,
431 TextEncoderEncode = 430, 431 TextEncoderEncode = 430,
432 TextDecoderConstructor = 431, 432 TextDecoderConstructor = 431,
433 TextDecoderDecode= 432, 433 TextDecoderDecode= 432,
434 FocusInOutEvent = 433, 434 FocusInOutEvent = 433,
435 MouseEventMovementX = 434, 435 MouseEventMovementX = 434,
436 MouseEventMovementY = 435, 436 MouseEventMovementY = 435,
437 MixedContentForm = 436,
Mike West 2014/06/06 12:18:18 I should have been more clear: I think it would be
mhm 2014/06/06 19:11:59 There is a counter already doing that (UseCounter:
437 // Add new features immediately above this line. Don't change assigned 438 // Add new features immediately above this line. Don't change assigned
438 // numbers of any item, and don't reuse removed slots. 439 // numbers of any item, and don't reuse removed slots.
439 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 440 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
440 // to update the UMA mapping. 441 // to update the UMA mapping.
441 NumberOfFeatures, // This enum value must be last. 442 NumberOfFeatures, // This enum value must be last.
442 }; 443 };
443 444
444 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 445 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
445 static void count(const Document&, Feature); 446 static void count(const Document&, Feature);
446 // This doesn't count for non-Document ExecutionContext. 447 // This doesn't count for non-Document ExecutionContext.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 493
493 void updateMeasurements(); 494 void updateMeasurements();
494 495
495 OwnPtr<BitVector> m_countBits; 496 OwnPtr<BitVector> m_countBits;
496 BitVector m_CSSFeatureBits; 497 BitVector m_CSSFeatureBits;
497 }; 498 };
498 499
499 } // namespace WebCore 500 } // namespace WebCore
500 501
501 #endif // UseCounter_h 502 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698