repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
syang2forever/jos
jos/user/faultdie.c
// test user-level fault handler -- just exit when we fault #include <inc/lib.h> void handler(struct UTrapframe *utf) { void *addr = (void*)utf->utf_fault_va; uint32_t err = utf->utf_err; cprintf("i faulted at va %x, err %x\n", addr, err & 7); sys_env_destroy(sys_getenvid()); } void umain(int argc, char **argv) ...
syang2forever/jos
jos/user/spin.c
// Test preemption by forking off a child process that just spins forever. // Let it run for a couple time slices, then kill it. #include <inc/lib.h> void umain(int argc, char **argv) { envid_t env; cprintf("I am the parent. Forking the child...\n"); if ((env = fork()) == 0) { cprintf("I am the child. Spinnin...
syang2forever/jos
jos/kern/monitor.c
<filename>jos/kern/monitor.c // Simple command-line kernel monitor useful for // controlling the kernel and exploring the system interactively. #include <inc/stdio.h> #include <inc/string.h> #include <inc/memlayout.h> #include <inc/assert.h> #include <inc/x86.h> #include <kern/console.h> #include <kern/monitor.h> #in...
syang2forever/jos
jos/kern/console.c
/* See COPYRIGHT for copyright information. */ #include <inc/x86.h> #include <inc/memlayout.h> #include <inc/kbdreg.h> #include <inc/string.h> #include <inc/assert.h> #include <kern/console.h> #include <kern/trap.h> #include <kern/picirq.h> static void cons_intr(int (*proc)(void)); static void cons_putc(int c); // ...
syang2forever/jos
jos/user/faultbadhandler.c
// test bad pointer for user-level fault handler // this is going to fault in the fault handler accessing eip (always!) // so eventually the kernel kills it (PFM_KILL) because // we outrun the stack with invocations of the user-level handler #include <inc/lib.h> void umain(int argc, char **argv) { sys_page_alloc(0, ...
NewLukasz/KsiazkaAdresowaPPP
AdresatMenedzer.h
#ifndef ADRESATMENEDZER_H #define ADRESATMENEDZER_H #include <iostream> #include <vector> #include <cstdlib> #include "Adresat.h" #include "MetodyPomocnicze.h" #include "PlikZAdresatami.h" using namespace std; class AdresatMenedzer{ Adresat adresat; vector <Adresat> adresaci; PlikZAdresatami plikZAdresa...
NewLukasz/KsiazkaAdresowaPPP
Adresat.h
#ifndef ADRESAT_H #define ADRESAT_H #include <iostream> using namespace std; class Adresat{ int id, idUzytkownika; string imie,nazwisko,numerTelefonu,email,adres; public: int pobierzId(); int pobierzIdUzytkownika(); string pobierzImie(); string pobierzNazwisko(); string pobierzNumerTelefo...
NewLukasz/KsiazkaAdresowaPPP
KsiazkaAdresowa.h
#ifndef KSIAZKAADRESOWA_H #define KSIAZKAADRESOWA_H #include <iostream> #include "UzytkownikMenedzer.h" #include "AdresatMenedzer.h" using namespace std; class KsiazkaAdresowa { UzytkownikMenedzer uzytkownikMenedzer; AdresatMenedzer *adresatMenedzer; const string NAZWA_PLIKU_Z_ADRESATAMI; vector <Uz...
NewLukasz/KsiazkaAdresowaPPP
PlikZAdresatami.h
<gh_stars>0 #ifndef PLIKZADRESATAMI_H #define PLIKZADRESATAMI_H #include <iostream> #include <fstream> #include <cstdlib> #include <vector> #include <stdio.h> #include "Adresat.h" #include "MetodyPomocnicze.h" using namespace std; class PlikZAdresatami { Adresat adresat; string zamienDaneAdresataNaLinieZDan...
NewLukasz/KsiazkaAdresowaPPP
PlikZUzytkownikami.h
<filename>PlikZUzytkownikami.h<gh_stars>0 #ifndef PLIKZUZYTKOWNIKAMI_H #define PLIKZUZYTKOWNIKAMI_H #include <iostream> #include <vector> #include <fstream> #include <cstdlib> #include "Uzytkownik.h" #include "MetodyPomocnicze.h" using namespace std; class PlikZUzytkownikami { const string nazwaPlikuZUzytkownika...
NewLukasz/KsiazkaAdresowaPPP
MetodyPomocnicze.h
#ifndef METODYPOMOCNICZE_H #define METODYPOMOCNICZE_H #include <iostream> #include <sstream> #include <cstdlib> using namespace std; class MetodyPomocnicze{ public: static string konwerjsaIntNaString(int liczba); static char wczytajZnak(); static string wczytajLinie(); static int konwersjaStringN...
blueboxd/chromium-legacy
chrome/browser/ui/autofill/chrome_autofill_client.h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ #define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ #include <memory> #include <str...
blueboxd/chromium-legacy
chrome/test/media_router/media_router_cast_ui_for_test.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_CAST_UI_FOR_TEST_H_ #define CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_CAST_UI...
blueboxd/chromium-legacy
media/gpu/vaapi/vp9_vaapi_video_encoder_delegate.h
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_GPU_VAAPI_VP9_VAAPI_VIDEO_ENCODER_DELEGATE_H_ #define MEDIA_GPU_VAAPI_VP9_VAAPI_VIDEO_ENCODER_DELEGATE_H_ #include <list> #include <memory>...
blueboxd/chromium-legacy
ash/system/time/calendar_utils.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_SYSTEM_TIME_CALENDAR_UTILS_H_ #define ASH_SYSTEM_TIME_CALENDAR_UTILS_H_ #include "base/time/time.h" #include "third_party/skia/include/core/S...
blueboxd/chromium-legacy
chrome/browser/ash/crosapi/crosapi_ash.h
<reponame>blueboxd/chromium-legacy // Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_CROSAPI_CROSAPI_ASH_H_ #define CHROME_BROWSER_ASH_CROSAPI_CROSAPI_ASH_H_ #include <map> #in...
blueboxd/chromium-legacy
ash/webui/projector_app/projector_app_client.h
<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WEBUI_PROJECTOR_APP_PROJECTOR_APP_CLIENT_H_ #define ASH_WEBUI_PROJECTOR_APP_PROJECTOR_APP_CLIENT_H_ #include "base/observer_...
blueboxd/chromium-legacy
components/feed/feed_feature_list.h
<filename>components/feed/feed_feature_list.h // Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_FEED_FEED_FEATURE_LIST_H_ #define COMPONENTS_FEED_FEED_FEATURE_LIST_H_ #include <string>...
blueboxd/chromium-legacy
ash/login/ui/login_user_view.h
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_LOGIN_UI_LOGIN_USER_VIEW_H_ #define ASH_LOGIN_UI_LOGIN_USER_VIEW_H_ #include "ash/ash_export.h" #include "ash/login/ui/login_base_bubble_view...
blueboxd/chromium-legacy
third_party/blink/renderer/core/mobile_metrics/mobile_metrics_test_helpers.h
<gh_stars>10-100 // Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_MOBILE_METRICS_MOBILE_METRICS_TEST_HELPERS_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_MOBILE_METR...
blueboxd/chromium-legacy
components/arc/input_overlay/actions/dependent_position.h
<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_ARC_INPUT_OVERLAY_ACTIONS_DEPENDENT_POSITION_H_ #define COMPONENTS_ARC_INPUT_OVERLAY_ACTIONS_DEPENDENT_POSITION_H_ #i...
blueboxd/chromium-legacy
chrome/browser/apps/app_service/subscriber_crosapi.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_APPS_APP_SERVICE_SUBSCRIBER_CROSAPI_H_ #define CHROME_BROWSER_APPS_APP_SERVICE_SUBSCRIBER_CROSAPI_H_ #include <memory> #include <s...
blueboxd/chromium-legacy
ios/chrome/browser/flags/ios_chrome_flag_descriptions.h
<reponame>blueboxd/chromium-legacy<filename>ios/chrome/browser/flags/ios_chrome_flag_descriptions.h<gh_stars>10-100 // Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IOS_CHROME_BROWSER_FLAGS_IOS_C...
blueboxd/chromium-legacy
components/signin/core/browser/account_reconcilor.h
<gh_stars>10-100 // Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_RECONCILOR_H_ #define COMPONENTS_SIGNIN_CORE_BROWSER_ACCOUNT_RECONCILOR_H_ #include <memor...
blueboxd/chromium-legacy
ash/components/fwupd/firmware_update_manager.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_COMPONENTS_FWUPD_FIRMWARE_UPDATE_MANAGER_H_ #define ASH_COMPONENTS_FWUPD_FIRMWARE_UPDATE_MANAGER_H_ #inclu...
blueboxd/chromium-legacy
third_party/blink/renderer/core/timing/window_performance.h
/* * Copyright (C) 2010 Google Inc. All rights reserved. * Copyright (C) 2012 Intel Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retai...
blueboxd/chromium-legacy
chrome/browser/enterprise/connectors/device_trust/key_management/browser/key_rotation_launcher.h
<filename>chrome/browser/enterprise/connectors/device_trust/key_management/browser/key_rotation_launcher.h // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ENTERPRISE_CONNECTORS_DE...
blueboxd/chromium-legacy
components/optimization_guide/content/browser/test_page_content_annotator.h
<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_OPTIMIZATION_GUIDE_CONTENT_BROWSER_TEST_PAGE_CONTENT_ANNOTATOR_H_ #define COMPONENTS_OPTIMIZATION_GUIDE_CONTENT_BROWSE...
blueboxd/chromium-legacy
device/bluetooth/floss/fake_floss_adapter_client.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_BLUETOOTH_FLOSS_FAKE_FLOSS_ADAPTER_CLIENT_H_ #define DEVICE_BLUETOOTH_FLOSS_FAKE_FLOSS_ADAPTER_CLIENT_H_ #include "base/logging.h" #includ...
blueboxd/chromium-legacy
chrome/browser/extensions/api/passwords_private/passwords_private_utils_chromeos.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWORDS_PRIVATE_UTILS_CHROMEOS_H_ #define CHROME_BROWSER_EXTENSIONS_API_PASSWORDS_PRIVATE_PASSWO...
blueboxd/chromium-legacy
components/viz/service/display_embedder/skia_output_surface_impl_on_gpu.h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VIZ_SERVICE_DISPLAY_EMBEDDER_SKIA_OUTPUT_SURFACE_IMPL_ON_GPU_H_ #define COMPONENTS_VIZ_SERVICE_DISPLAY_EMBEDDER_SKIA_OUTPUT_SURFACE_IMP...
blueboxd/chromium-legacy
third_party/blink/renderer/core/html/forms/html_select_menu_element.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_HTML_SELECT_MENU_ELEMENT_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_...
blueboxd/chromium-legacy
ui/accessibility/ax_role_properties.h
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_AX_ROLE_PROPERTIES_H_ #define UI_ACCESSIBILITY_AX_ROLE_PROPERTIES_H_ #include "ui/accessibility/ax_base_export.h" #include "ui/a...
blueboxd/chromium-legacy
chrome/browser/ui/app_list/chrome_app_list_item_manager.h
<filename>chrome/browser/ui/app_list/chrome_app_list_item_manager.h // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_APP_LIST_CHROME_APP_LIST_ITEM_MANAGER_H_ #define CHROME_BROW...
blueboxd/chromium-legacy
ash/webui/projector_app/trusted_projector_ui.h
<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WEBUI_PROJECTOR_APP_TRUSTED_PROJECTOR_UI_H_ #define ASH_WEBUI_PROJECTOR_APP_TRUSTED_PROJECTOR_UI_H_ #include "content/public...
blueboxd/chromium-legacy
content/browser/accessibility/browser_accessibility_mac.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ #include "base/...
blueboxd/chromium-legacy
components/autofill/core/browser/payments/credit_card_otp_authenticator.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_CREDIT_CARD_OTP_AUTHENTICATOR_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_CREDIT_CARD_OTP_AUTHE...
blueboxd/chromium-legacy
chrome/browser/ash/preferences.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_PREFERENCES_H_ #define CHROME_BROWSER_ASH_PREFERENCES_H_ #include <string> #include "ash/public/mojom/cros_display_config...
blueboxd/chromium-legacy
components/feed/core/v2/config.h
<reponame>blueboxd/chromium-legacy // Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_FEED_CORE_V2_CONFIG_H_ #define COMPONENTS_FEED_CORE_V2_CONFIG_H_ #include "base/containers/flat_set...
blueboxd/chromium-legacy
chrome/browser/media/router/media_router_feature.h
<gh_stars>10-100 // Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_FEATURE_H_ #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_FEATURE_H_ #include "base/f...
blueboxd/chromium-legacy
chrome/browser/ui/views/autofill/payments/card_unmask_otp_input_dialog_views.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_PAYMENTS_CARD_UNMASK_OTP_INPUT_DIALOG_VIEWS_H_ #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_PAYMENTS_CARD_UNMASK_OTP_...
blueboxd/chromium-legacy
chromeos/components/eche_app_ui/pref_names.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROMEOS_COMPONENTS_ECHE_APP_UI_PREF_NAMES_H_ #define CHROMEOS_COMPONENTS_ECHE_APP_UI_PREF_NAMES_H_ namespace chromeos { namespace eche_app { nam...
blueboxd/chromium-legacy
content/browser/webui/web_ui_impl.h
<reponame>blueboxd/chromium-legacy // Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ #define CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ #include <map> #include ...
blueboxd/chromium-legacy
chrome/browser/ui/views/web_apps/web_app_protocol_handler_intent_picker_dialog_view.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_WEB_APPS_WEB_APP_PROTOCOL_HANDLER_INTENT_PICKER_DIALOG_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_WEB_APPS_WEB_APP_PROTOCOL_H...
blueboxd/chromium-legacy
components/global_media_controls/public/media_session_item_producer.h
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_MEDIA_SESSION_ITEM_PRODUCER_H_ #define COMPONENTS_GLOBAL_MEDIA_CONTROLS_PUBLIC_MEDIA_SESSION_ITEM_PRODUCER...
blueboxd/chromium-legacy
ash/wm/desks/templates/desks_templates_presenter.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WM_DESKS_TEMPLATES_DESKS_TEMPLATES_PRESENTER_H_ #define ASH_WM_DESKS_TEMPLATES_DESKS_TEMPLATES_PRESENTER_H_ #include <vector> #include "ash/...
blueboxd/chromium-legacy
components/page_load_metrics/browser/observers/core/uma_page_load_metrics_observer.h
<gh_stars>10-100 // Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_PAGE_LOAD_METRICS_BROWSER_OBSERVERS_CORE_UMA_PAGE_LOAD_METRICS_OBSERVER_H_ #define COMPONENTS_PAGE_LOAD_METRICS_BROWSE...
blueboxd/chromium-legacy
chrome/browser/ash/chrome_browser_main_parts_ash.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_CHROME_BROWSER_MAIN_PARTS_ASH_H_ #define CHROME_BROWSER_ASH_CHROME_BROWSER_MAIN_PARTS_ASH_H_ #include <memory> // TODO(ht...
blueboxd/chromium-legacy
chrome/browser/ash/system/fake_input_device_settings.h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_SYSTEM_FAKE_INPUT_DEVICE_SETTINGS_H_ #define CHROME_BROWSER_ASH_SYSTEM_FAKE_INPUT_DEVICE_SETTINGS_H_ #include "base/compiler_s...
blueboxd/chromium-legacy
ui/ozone/platform/flatland/flatland_sysmem_buffer_collection.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_OZONE_PLATFORM_FLATLAND_FLATLAND_SYSMEM_BUFFER_COLLECTION_H_ #define UI_OZONE_PLATFORM_FLATLAND_FLATLAND_SYS...
blueboxd/chromium-legacy
chrome/browser/extensions/api/quick_unlock_private/quick_unlock_private_api_lacros.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_EXTENSIONS_API_QUICK_UNLOCK_PRIVATE_QUICK_UNLOCK_PRIVATE_API_LACROS_H_ #define CHROME_BROWSER_EXTENSIONS_API_QUICK_UNLOCK_PRIVATE_Q...
blueboxd/chromium-legacy
chrome/browser/ui/views/global_media_controls/media_toolbar_button_contextual_menu.h
<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_GLOBAL_MEDIA_CONTROLS_MEDIA_TOOLBAR_BUTTON_CONTEXTUAL_MENU_H_ #define CHROME_BROWSER_UI_VIEWS_GLOBAL_MEDI...
blueboxd/chromium-legacy
content/browser/worker_host/dedicated_worker_host.h
<gh_stars>10-100 // Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_WORKER_HOST_DEDICATED_WORKER_HOST_H_ #define CONTENT_BROWSER_WORKER_HOST_DEDICATED_WORKER_HOST_H_ #include <memo...
blueboxd/chromium-legacy
chrome/browser/ash/phonehub/camera_roll_download_manager_impl.h
<filename>chrome/browser/ash/phonehub/camera_roll_download_manager_impl.h // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_PHONEHUB_CAMERA_ROLL_DOWNLOAD_MANAGER_IMPL_H_ #define...
blueboxd/chromium-legacy
ui/accessibility/platform/test_ax_node_wrapper.h
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ #define UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ #include <set> #include <string> #inc...
blueboxd/chromium-legacy
chrome/browser/policy/messaging_layer/upload/dm_server_upload_service.h
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_POLICY_MESSAGING_LAYER_UPLOAD_DM_SERVER_UPLOAD_SERVICE_H_ #define CHROME_BROWSER_POLICY_MESSAGING_LAYER_UPLOAD_DM_SERVER_UPLOAD_SER...
blueboxd/chromium-legacy
chromeos/components/eche_app_ui/apps_access_manager_impl.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROMEOS_COMPONENTS_ECHE_APP_UI_APPS_ACCESS_MANAGER_IMPL_H_ #define CHROMEOS_COMPONENTS_ECHE_APP_UI_APPS_ACCESS...
blueboxd/chromium-legacy
chrome/browser/android/autofill_assistant/ui_controller_android_utils.h
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ANDROID_AUTOFILL_ASSISTANT_UI_CONTROLLER_ANDROID_UTILS_H_ #define CHROME_BROWSER_ANDROID_AUTOFILL_ASSISTANT_UI_CONTROLLER_ANDROID_U...
blueboxd/chromium-legacy
chrome/browser/ui/webui/about_ui.h
// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_WEBUI_ABOUT_UI_H_ #define CHROME_BROWSER_UI_WEBUI_ABOUT_UI_H_ #include <string> #include "base/compiler_specific.h" #inclu...
blueboxd/chromium-legacy
ash/wm/desks/templates/desks_templates_dialog_controller.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WM_DESKS_TEMPLATES_DESKS_TEMPLATES_DIALOG_CONTROLLER_H_ #define ASH_WM_DESKS_TEMPLATES_DESKS_TEMPLATES_DIAL...
blueboxd/chromium-legacy
ash/system/message_center/message_center_scroll_bar.h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_SYSTEM_MESSAGE_CENTER_MESSAGE_CENTER_SCROLL_BAR_H_ #define ASH_SYSTEM_MESSAGE_CENTER_MESSAGE_CENTER_SCROLL_BAR_H_ #include "ash/public/cpp/pr...
blueboxd/chromium-legacy
components/viz/common/quads/shared_element_draw_quad.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VIZ_COMMON_QUADS_SHARED_ELEMENT_DRAW_QUAD_H_ #define COMPONENTS_VIZ_COMMON_QUADS_SHARED_ELEMENT_DRAW_QUAD_H_ #include "components/viz/...
blueboxd/chromium-legacy
media/base/media_switches.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Defines all the "media" command-line switches. #ifndef MEDIA_BASE_MEDIA_SWITCHES_H_ #define MEDIA_BASE_MEDIA_SWITCHES_H_ #include <string> #incl...
blueboxd/chromium-legacy
services/device/generic_sensor/platform_sensor.h
<filename>services/device/generic_sensor/platform_sensor.h // Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_H_ #define SERVICES_DEVICE_GENERIC_SENSO...
blueboxd/chromium-legacy
chrome/browser/ui/ash/projector/projector_app_client_impl.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_ASH_PROJECTOR_PROJECTOR_APP_CLIENT_IMPL_H_ #define CHROME_BROWSER_UI_ASH_PROJECTOR_PROJECTOR_APP_CLIENT_IMPL_H_ #include "ash/w...
blueboxd/chromium-legacy
ash/app_list/views/app_list_folder_view.h
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_APP_LIST_VIEWS_APP_LIST_FOLDER_VIEW_H_ #define ASH_APP_LIST_VIEWS_APP_LIST_FOLDER_VIEW_H_ #include <memory> #include <string> #include <vecto...
blueboxd/chromium-legacy
chrome/browser/ui/user_education/feature_promo_bubble_params.h
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_USER_EDUCATION_FEATURE_PROMO_BUBBLE_PARAMS_H_ #define CHROME_BROWSER_UI_USER_EDUCATION_FEATURE_PROMO_BUBBLE_PARAMS_H_ #include ...
blueboxd/chromium-legacy
ash/webui/projector_app/test/mock_app_client.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WEBUI_PROJECTOR_APP_TEST_MOCK_APP_CLIENT_H_ #define ASH_WEBUI_PROJECTOR_APP_TEST_MOCK_APP_CLIENT_H_ #inclu...
blueboxd/chromium-legacy
cc/layers/region_capture_bounds.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_LAYERS_REGION_CAPTURE_BOUNDS_H_ #define CC_LAYERS_REGION_CAPTURE_BOUNDS_H_ #include "base/containers/flat_map.h" #include "base/token.h" #incl...
blueboxd/chromium-legacy
components/autofill_assistant/browser/java_tts_controller.h
<reponame>blueboxd/chromium-legacy<filename>components/autofill_assistant/browser/java_tts_controller.h<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_ASSIST...
blueboxd/chromium-legacy
ash/wm/desks/templates/desks_templates_icon_view.h
<filename>ash/wm/desks/templates/desks_templates_icon_view.h // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WM_DESKS_TEMPLATES_DESKS_TEMPLATES_ICON_VIEW_H_ #define ASH_WM_DESKS_TEMPLATES_DE...
blueboxd/chromium-legacy
media/gpu/vaapi/h264_vaapi_video_encoder_delegate.h
<reponame>blueboxd/chromium-legacy // Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_GPU_VAAPI_H264_VAAPI_VIDEO_ENCODER_DELEGATE_H_ #define MEDIA_GPU_VAAPI_H264_VAAPI_VIDEO_ENCODER_DELEGATE_...
blueboxd/chromium-legacy
ash/system/time/calendar_view.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_SYSTEM_TIME_CALENDAR_VIEW_H_ #define ASH_SYSTEM_TIME_CALENDAR_VIEW_H_ #include "ash/ash_export.h" #include "ash/system/time/calendar_view_con...
blueboxd/chromium-legacy
cc/trees/layer_tree_host_impl.h
// Copyright 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_ #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ #include <stddef.h> #include <memory> #include <set> #include <string>...
blueboxd/chromium-legacy
media/gpu/vaapi/vp8_vaapi_video_encoder_delegate.h
<filename>media/gpu/vaapi/vp8_vaapi_video_encoder_delegate.h<gh_stars>10-100 // Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_GPU_VAAPI_VP8_VAAPI_VIDEO_ENCODER_DELEGATE_H_ #define MEDIA_GPU...
blueboxd/chromium-legacy
chrome/browser/ui/android/autofill/autofill_progress_dialog_view_android.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_PROGRESS_DIALOG_VIEW_ANDROID_H_ #define CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_PROGRESS_DIALOG_VI...
blueboxd/chromium-legacy
chrome/browser/ui/autofill/payments/card_unmask_authentication_selection_dialog_view.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_CARD_UNMASK_AUTHENTICATION_SELECTION_DIALOG_VIEW_H_ #define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_CARD_UNMASK_AU...
blueboxd/chromium-legacy
chrome/browser/ui/toolbar/app_menu_model.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_TOOLBAR_APP_MENU_MODEL_H_ #define CHROME_BROWSER_UI_TOOLBAR_APP_MENU_MODEL_H_ #include <memory> #include "base/macros.h" #...
blueboxd/chromium-legacy
third_party/blink/renderer/core/layout/geometry/physical_offset.h
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_GEOMETRY_PHYSICAL_OFFSET_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_GEOMETRY_PHYSICAL_OFFSET_H_ #in...
blueboxd/chromium-legacy
chromecast/cast_core/runtime_application_base.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROMECAST_CAST_CORE_RUNTIME_APPLICATION_BASE_H_ #define CHROMECAST_CAST_CORE_RUNTIME_APPLICATION_BASE_H_ #include <memory> #include <string> #i...
blueboxd/chromium-legacy
services/viz/public/cpp/compositing/compositor_render_pass_mojom_traits.h
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_VIZ_PUBLIC_CPP_COMPOSITING_COMPOSITOR_RENDER_PASS_MOJOM_TRAITS_H_ #define SERVICES_VIZ_PUBLIC_CPP_COMPOSITING_COMPOSITOR_RENDER_PASS_MOJO...
blueboxd/chromium-legacy
ash/webui/projector_app/annotator_tool.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WEBUI_PROJECTOR_APP_ANNOTATOR_TOOL_H_ #define ASH_WEBUI_PROJECTOR_APP_ANNOTATOR_TOOL_H_ #include "base/component_export.h" #include "third_pa...
blueboxd/chromium-legacy
chromeos/components/eche_app_ui/eche_presence_manager.h
<filename>chromeos/components/eche_app_ui/eche_presence_manager.h // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROMEOS_COMPONENTS_ECHE_APP_UI_ECHE_PRESENCE_MANAGER_H_ #define CHROMEOS_COMPON...
blueboxd/chromium-legacy
media/parsers/vp8_parser.h
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // This file contains an implementation of a VP8 raw stream parser, // as defined in RFC 6386. #ifndef MEDIA_PARSERS_VP8_PARSER_H_ #define MEDIA_PARSER...
blueboxd/chromium-legacy
ash/webui/projector_app/public/cpp/projector_app_constants.h
<filename>ash/webui/projector_app/public/cpp/projector_app_constants.h // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WEBUI_PROJECTOR_APP_PUBLIC_CPP_PROJECTOR_APP_CONSTANTS_H_ #define ASH_W...
blueboxd/chromium-legacy
ui/ozone/platform/flatland/flatland_surface.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_OZONE_PLATFORM_FLATLAND_FLATLAND_SURFACE_H_ #define UI_OZONE_PLATFORM_FLATLAND_FLATLAND_SURFACE_H_ #include...
blueboxd/chromium-legacy
components/viz/common/frame_sinks/copy_output_result.h
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VIZ_COMMON_FRAME_SINKS_COPY_OUTPUT_RESULT_H_ #define COMPONENTS_VIZ_COMMON_FRAME_SINKS_COPY_OUTPUT_RESULT_H_ #include <array> #include...
blueboxd/chromium-legacy
chrome/browser/ui/media_router/media_router_ui.h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_MEDIA_ROUTER_MEDIA_ROUTER_UI_H_ #define CHROME_BROWSER_UI_MEDIA_ROUTER_MEDIA_ROUTER_UI_H_ #include <memory> #include <set> #inc...
blueboxd/chromium-legacy
third_party/blink/renderer/core/css/css_font_selector_base.h
<reponame>blueboxd/chromium-legacy // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_FONT_SELECTOR_BASE_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_F...
blueboxd/chromium-legacy
chrome/browser/ash/policy/reporting/metrics_reporting/network/https_latency_sampler.h
<filename>chrome/browser/ash/policy/reporting/metrics_reporting/network/https_latency_sampler.h<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_POLICY_REPORTIN...
blueboxd/chromium-legacy
third_party/blink/renderer/core/loader/web_bundle/web_bundle_loader.h
<reponame>blueboxd/chromium-legacy<gh_stars>10-100 // Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_WEB_BUNDLE_WEB_BUNDLE_LOADER_H_ #define THIRD_PARTY_BLIN...
blueboxd/chromium-legacy
chrome/browser/chromeos/extensions/login_screen/login_state/session_state_changed_event_dispatcher.h
<reponame>blueboxd/chromium-legacy // Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_LOGIN_SCREEN_LOGIN_STATE_SESSION_STATE_CHANGED_EVENT_DISPATCHER_H_ #define C...
blueboxd/chromium-legacy
base/allocator/partition_allocator/partition_alloc_check.h
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_ALLOCATOR_PARTITION_ALLOCATOR_PARTITION_ALLOC_CHECK_H_ #define BASE_ALLOCATOR_PARTITION_ALLOCATOR_PARTITION_ALLOC_CHECK_H_ #include "base/al...
blueboxd/chromium-legacy
ios/chrome/browser/ui/popup_menu/overflow_menu/overflow_menu_mediator.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IOS_CHROME_BROWSER_UI_POPUP_MENU_OVERFLOW_MENU_OVERFLOW_MENU_MEDIATOR_H_ #define IOS_CHROME_BROWSER_UI_POPUP_MENU_OVERFLOW_MENU_OVERFLOW_MENU_MEDI...
blueboxd/chromium-legacy
chrome/browser/ui/views/autofill/autofill_popup_base_view.h
<filename>chrome/browser/ui/views/autofill/autofill_popup_base_view.h // Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_POPUP_BASE_VIEW_H_ #define CHROME_...
blueboxd/chromium-legacy
chrome/updater/win/win_constants.h
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_UPDATER_WIN_WIN_CONSTANTS_H_ #define CHROME_UPDATER_WIN_WIN_CONSTANTS_H_ #include <windows.h> #include "chrome/updater/updater_branding.h...
blueboxd/chromium-legacy
components/app_restore/app_restore_utils.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_APP_RESTORE_APP_RESTORE_UTILS_H_ #define COMPONENTS_APP_RESTORE_APP_RESTORE_UTILS_H_ #include "base/component_export.h" #include "ui/v...
blueboxd/chromium-legacy
third_party/blink/renderer/core/layout/ng/flex/ng_flex_layout_algorithm.h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_FLEX_NG_FLEX_LAYOUT_ALGORITHM_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_NG_FLEX_NG_FLEX_LAYOUT_A...
blueboxd/chromium-legacy
sandbox/policy/mac/sandbox_mac.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SANDBOX_POLICY_MAC_SANDBOX_MAC_H_ #define SANDBOX_POLICY_MAC_SANDBOX_MAC_H_ #include <string> #include "base/files/file_path.h" #include "ba...
blueboxd/chromium-legacy
ash/wm/overview/overview_test_base.h
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ASH_WM_OVERVIEW_OVERVIEW_TEST_BASE_H_ #define ASH_WM_OVERVIEW_OVERVIEW_TEST_BASE_H_ #include <memory> #include <string> #include <vector> #inclu...