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

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

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge. Created 4 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 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef UseCounter_h 26 #ifndef UseCounter_h
27 #define UseCounter_h 27 #define UseCounter_h
28 28
29 #include "core/CSSPropertyNames.h" 29 #include "core/CSSPropertyNames.h"
30 #include "core/CoreExport.h" 30 #include "core/CoreExport.h"
31 #include "core/css/parser/CSSParserMode.h" 31 #include "core/css/parser/CSSParserMode.h"
32 #include "wtf/BitVector.h" 32 #include "wtf/BitVector.h"
33 #include "wtf/Noncopyable.h" 33 #include "wtf/Noncopyable.h"
34 #include "wtf/OwnPtr.h"
35 #include "wtf/PassOwnPtr.h"
36 #include "wtf/text/WTFString.h" 34 #include "wtf/text/WTFString.h"
37 #include <v8.h> 35 #include <v8.h>
38 36
39 namespace blink { 37 namespace blink {
40 38
41 class CSSStyleSheet; 39 class CSSStyleSheet;
42 class Document; 40 class Document;
43 class ExecutionContext; 41 class ExecutionContext;
44 class Frame; 42 class Frame;
45 class LocalFrame; 43 class LocalFrame;
(...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after
1296 friend class UseCounterTest; 1294 friend class UseCounterTest;
1297 static int m_muteCount; 1295 static int m_muteCount;
1298 1296
1299 CountBits m_countBits; 1297 CountBits m_countBits;
1300 BitVector m_CSSFeatureBits; 1298 BitVector m_CSSFeatureBits;
1301 }; 1299 };
1302 1300
1303 } // namespace blink 1301 } // namespace blink
1304 1302
1305 #endif // UseCounter_h 1303 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698