Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 786597 | Differences between
and this patch

Collapse All | Expand All

(-)a/third_party/angle/src/libANGLE/HandleAllocator.cpp (+1 lines)
Lines 9-14 Link Here
9
9
10
#include "libANGLE/HandleAllocator.h"
10
#include "libANGLE/HandleAllocator.h"
11
11
12
#include <limits>
12
#include <algorithm>
13
#include <algorithm>
13
#include <functional>
14
#include <functional>
14
15
(-)a/third_party/perfetto/src/trace_processor/containers/string_pool.cc (-1 / +1 lines)
Lines 14-22 Link Here
14
 * limitations under the License.
14
 * limitations under the License.
15
 */
15
 */
16
16
17
#include <limits>
17
#include "src/trace_processor/containers/string_pool.h"
18
#include "src/trace_processor/containers/string_pool.h"
18
19
19
#include <limits>
20
20
21
#include "perfetto/base/logging.h"
21
#include "perfetto/base/logging.h"
22
#include "perfetto/ext/base/utils.h"
22
#include "perfetto/ext/base/utils.h"
(-)a/third_party/perfetto/src/trace_processor/db/column.cc (+1 lines)
Lines 14-19 Link Here
14
 * limitations under the License.
14
 * limitations under the License.
15
 */
15
 */
16
16
17
#include <limits>
17
#include "src/trace_processor/db/column.h"
18
#include "src/trace_processor/db/column.h"
18
19
19
#include "src/trace_processor/db/compare.h"
20
#include "src/trace_processor/db/compare.h"
(-)a/third_party/perfetto/src/trace_processor/types/variadic.cc (+1 lines)
Lines 14-19 Link Here
14
 * limitations under the License.
14
 * limitations under the License.
15
 */
15
 */
16
16
17
#include <limits>
17
#include "src/trace_processor/types/variadic.h"
18
#include "src/trace_processor/types/variadic.h"
18
19
19
namespace perfetto {
20
namespace perfetto {
(-)a/ui/accessibility/platform/ax_platform_atk_hyperlink.cc (-1 / +1 lines)
Lines 245-251 static void AXPlatformAtkHyperlinkInit(AXPlatformAtkHyperlink* self, gpointer) { Link Here
245
}
245
}
246
246
247
GType ax_platform_atk_hyperlink_get_type() {
247
GType ax_platform_atk_hyperlink_get_type() {
248
  static volatile gsize type_volatile = 0;
248
  static gsize type_volatile = 0;
249
249
250
  AXPlatformNodeAuraLinux::EnsureGTypeInit();
250
  AXPlatformNodeAuraLinux::EnsureGTypeInit();
251
251
(-)a/ui/accessibility/platform/ax_platform_node_auralinux.cc (-1 / +1 lines)
Lines 2274-2280 void ClassInit(gpointer class_pointer, gpointer /* class_data */) { Link Here
2274
GType GetType() {
2274
GType GetType() {
2275
  AXPlatformNodeAuraLinux::EnsureGTypeInit();
2275
  AXPlatformNodeAuraLinux::EnsureGTypeInit();
2276
2276
2277
  static volatile gsize type_volatile = 0;
2277
  static gsize type_volatile = 0;
2278
  if (g_once_init_enter(&type_volatile)) {
2278
  if (g_once_init_enter(&type_volatile)) {
2279
    static const GTypeInfo type_info = {
2279
    static const GTypeInfo type_info = {
2280
        sizeof(AXPlatformNodeAuraLinuxClass),  // class_size
2280
        sizeof(AXPlatformNodeAuraLinuxClass),  // class_size
(-)a/ui/gtk/gtk_key_bindings_handler.cc (-1 / +1 lines)
Lines 141-147 void GtkKeyBindingsHandler::HandlerClassInit(HandlerClass* klass) { Link Here
141
}
141
}
142
142
143
GType GtkKeyBindingsHandler::HandlerGetType() {
143
GType GtkKeyBindingsHandler::HandlerGetType() {
144
  static volatile gsize type_id_volatile = 0;
144
  static gsize type_id_volatile = 0;
145
  if (g_once_init_enter(&type_id_volatile)) {
145
  if (g_once_init_enter(&type_id_volatile)) {
146
    GType type_id = g_type_register_static_simple(
146
    GType type_id = g_type_register_static_simple(
147
        GTK_TYPE_TEXT_VIEW, g_intern_static_string("GtkKeyBindingsHandler"),
147
        GTK_TYPE_TEXT_VIEW, g_intern_static_string("GtkKeyBindingsHandler"),
(-)a/chrome/browser/ui/bookmarks/bookmark_tab_helper.cc (+1 lines)
Lines 2-7 Link Here
2
// Use of this source code is governed by a BSD-style license that can be
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
3
// found in the LICENSE file.
4
4
5
#include <cstddef>
5
#include "chrome/browser/ui/bookmarks/bookmark_tab_helper.h"
6
#include "chrome/browser/ui/bookmarks/bookmark_tab_helper.h"
6
7
7
#include "base/observer_list.h"
8
#include "base/observer_list.h"
(-)a/components/bookmarks/browser/bookmark_expanded_state_tracker.cc (+1 lines)
Lines 2-7 Link Here
2
// Use of this source code is governed by a BSD-style license that can be
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
3
// found in the LICENSE file.
4
4
5
#include <cstddef>
5
#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h"
6
#include "components/bookmarks/browser/bookmark_expanded_state_tracker.h"
6
7
7
#include <stdint.h>
8
#include <stdint.h>
(-)a/components/bookmarks/browser/base_bookmark_model_observer.cc (+2 lines)
Lines 2-7 Link Here
2
// Use of this source code is governed by a BSD-style license that can be
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
3
// found in the LICENSE file.
4
4
5
#include <cstddef>
6
5
#include "components/bookmarks/browser/base_bookmark_model_observer.h"
7
#include "components/bookmarks/browser/base_bookmark_model_observer.h"
6
8
7
namespace bookmarks {
9
namespace bookmarks {

Return to bug 786597