@wxt-dev/browser 0.0.331 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/gen/index.d.ts +12 -449
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wxt-dev/browser",
3
3
  "description": "Provides a cross-browser API for using extension APIs and types based on @types/chrome",
4
- "version": "0.0.331",
4
+ "version": "0.1.0",
5
5
  "type": "module",
6
6
  "main": "src/index.mjs",
7
7
  "types": "src/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "src"
20
20
  ],
21
21
  "devDependencies": {
22
- "@types/chrome": "0.0.331",
22
+ "@types/chrome": "0.1.0",
23
23
  "fs-extra": "^11.3.0",
24
24
  "nano-spawn": "^0.2.0",
25
25
  "tsx": "4.19.4",
@@ -647,40 +647,6 @@ export namespace Browser {
647
647
  export const onMuteChanged: Browser.events.Event<(event: MuteChangedEvent) => void>;
648
648
  }
649
649
 
650
- ////////////////////
651
- // Browser
652
- ////////////////////
653
- /**
654
- * Use the Browser.browser API to interact with the Chrome browser associated with
655
- * the current application and Chrome profile.
656
- * @deprecated Part of the deprecated Chrome Apps platform
657
- */
658
- export namespace browser {
659
- export interface Options {
660
- /** The URL to navigate to when the new tab is initially opened. */
661
- url: string;
662
- }
663
-
664
- /**
665
- * Opens a new tab in a browser window associated with the current application
666
- * and Chrome profile. If no browser window for the Chrome profile is opened,
667
- * a new one is opened prior to creating the new tab.
668
- * @param options Configures how the tab should be opened.
669
- * @param callback Called when the tab was successfully
670
- * created, or failed to be created. If failed, runtime.lastError will be set.
671
- */
672
- export function openTab(options: Options, callback: () => void): void;
673
-
674
- /**
675
- * Opens a new tab in a browser window associated with the current application
676
- * and Chrome profile. If no browser window for the Chrome profile is opened,
677
- * a new one is opened prior to creating the new tab.
678
- * @since Chrome 42
679
- * @param options Configures how the tab should be opened.
680
- */
681
- export function openTab(options: Options): void;
682
- }
683
-
684
650
  ////////////////////
685
651
  // Bookmarks
686
652
  ////////////////////
@@ -7180,55 +7146,6 @@ export namespace Browser {
7180
7146
  export var onEnabled: ManagementEnabledEvent;
7181
7147
  }
7182
7148
 
7183
- ////////////////////
7184
- // Networking
7185
- ////////////////////
7186
- /**
7187
- * Use the networking.config API to authenticate to captive portals.
7188
- * Permissions: "networking.config"
7189
- * Important: This API works only on Chrome OS.
7190
- * @since Chrome 43
7191
- */
7192
- export namespace networking.config {
7193
- export interface NetworkInfo {
7194
- /** Currently only WiFi supported. */
7195
- Type: string;
7196
- /** Optional. A unique identifier of the network. */
7197
- GUID?: string | undefined;
7198
- /** Optional. A hex-encoded byte sequence. */
7199
- HexSSID?: string | undefined;
7200
- /** Optional. The decoded SSID of the network (default encoding is UTF-8). To filter for non-UTF-8 SSIDs, use HexSSID instead. */
7201
- SSID?: string | undefined;
7202
- /** Optional. The basic service set identification (BSSID) uniquely identifying the basic service set. BSSID is represented as a human readable, hex-encoded string with bytes separated by colons, e.g. 45:67:89:ab:cd:ef. */
7203
- BSSID?: string | undefined;
7204
- /** Optional. Identifier indicating the security type of the network. Valid values are None, WEP-PSK, WPA-PSK and WPA-EAP. */
7205
- Security?: string | undefined;
7206
- }
7207
-
7208
- export interface CaptivePorttalDetectedEvent extends Browser.events.Event<(networkInfo: NetworkInfo) => void> {}
7209
-
7210
- /**
7211
- * Allows an extension to define network filters for the networks it can handle. A call to this function will remove all filters previously installed by the extension before setting the new list.
7212
- * @param networks Network filters to set. Every NetworkInfo must either have the SSID or HexSSID set. Other fields will be ignored.
7213
- * @param callback Called back when this operation is finished.
7214
- */
7215
- export function setNetworkFilter(networks: NetworkInfo[], callback: () => void): void;
7216
- /**
7217
- * Called by the extension to notify the network config API that it finished a captive portal authentication attempt and hand over the result of the attempt. This function must only be called with the GUID of the latest onCaptivePortalDetected event.
7218
- * @param GUID Unique network identifier obtained from onCaptivePortalDetected.
7219
- * @param result The result of the authentication attempt.
7220
- * unhandled: The extension does not handle this network or captive portal (e.g. server end-point not found or not compatible).
7221
- * succeeded: The extension handled this network and authenticated successfully.
7222
- * rejected: The extension handled this network, tried to authenticate, however was rejected by the server.
7223
- * failed: The extension handled this network, tried to authenticate, however failed due to an unspecified error.
7224
- * @param callback Called back when this operation is finished.
7225
- */
7226
- export function finishAuthentication(GUID: string, result: string, callback?: () => void): void;
7227
-
7228
- /** This event fires everytime a captive portal is detected on a network matching any of the currently registered network filters and the user consents to use the extension for authentication. Network filters may be set using the setNetworkFilter. Upon receiving this event the extension should start its authentication attempt with the captive portal. When the extension finishes its attempt, it must call finishAuthentication with the GUID received with this event and the appropriate authentication result. */
7229
- export var onCaptivePortalDetected: CaptivePorttalDetectedEvent;
7230
- }
7231
-
7232
7149
  ////////////////////
7233
7150
  // Notifications
7234
7151
  ////////////////////
@@ -8666,274 +8583,6 @@ export namespace Browser {
8666
8583
  export function query(options: QueryInfo): Promise<void>;
8667
8584
  }
8668
8585
 
8669
- ////////////////////
8670
- // Serial
8671
- ////////////////////
8672
- /**
8673
- * Use the <code>Browser.serial</code> API to read from and write to a device connected to a serial port.
8674
- * Permissions: "enterprise.serial"
8675
- * @since Chrome 29
8676
- * Important: This API works only on Chrome OS.
8677
- * @deprecated Part of the deprecated Chrome Apps platform
8678
- */
8679
- export namespace serial {
8680
- export const DataBits: {
8681
- SEVEN: "seven";
8682
- EIGHT: "eight";
8683
- };
8684
- export const ParityBit: {
8685
- NO: "no";
8686
- ODD: "odd";
8687
- EVEN: "even";
8688
- };
8689
- export const StopBits: {
8690
- ONE: "one";
8691
- TWO: "two";
8692
- };
8693
-
8694
- export interface DeviceInfo {
8695
- /** The device's system path. This should be passed as the path argument to Browser.serial.connect in order to connect to this device. */
8696
- path: string;
8697
- /** Optional. A PCI or USB vendor ID if one can be determined for the underlying device. */
8698
- vendorId?: number | undefined;
8699
- /** Optional. A USB product ID if one can be determined for the underlying device. */
8700
- productId?: number | undefined;
8701
- /** Optional. A human-readable display name for the underlying device if one can be queried from the host driver. */
8702
- displayName?: number | undefined;
8703
- }
8704
-
8705
- export interface ConnectionInfo {
8706
- /** The id of the serial port connection. */
8707
- connectionId?: number | undefined;
8708
- /** Flag indicating whether the connection is blocked from firing onReceive events. */
8709
- paused: boolean;
8710
- /** See ConnectionOptions.persistent */
8711
- persistent: boolean;
8712
- /** See ConnectionOptions.name */
8713
- name: string;
8714
- /** See ConnectionOptions.bufferSize */
8715
- bufferSize: number;
8716
- /** See ConnectionOptions.receiveTimeout */
8717
- receiveTimeout?: number | undefined;
8718
- /** See ConnectionOptions.sendTimeout */
8719
- sendTimeout?: number | undefined;
8720
- /** Optional. See ConnectionOptions.bitrate.
8721
- * This field may be omitted or inaccurate if a non-standard bitrate is in use, or if an error occurred while querying the underlying device. */
8722
- bitrate?: number | undefined;
8723
- /** Optional. See ConnectionOptions.dataBits. This field may be omitted if an error occurred while querying the underlying device. */
8724
- dataBits?: typeof DataBits[keyof typeof DataBits] | undefined;
8725
- /** Optional. See ConnectionOptions.parityBit. This field may be omitted if an error occurred while querying the underlying device. */
8726
- parityBit?: typeof ParityBit[keyof typeof ParityBit] | undefined;
8727
- /** Optional. See ConnectionOptions.stopBits. This field may be omitted if an error occurred while querying the underlying device. */
8728
- stopBits?: typeof StopBits[keyof typeof StopBits] | undefined;
8729
- /** Optional. Flag indicating whether or not to enable RTS/CTS hardware flow control. Defaults to false. */
8730
- ctsFlowControl?: boolean | undefined;
8731
- }
8732
-
8733
- export interface ConnectionOptions {
8734
- /** Optional. Flag indicating whether or not the connection should be left open when the application is suspended (see Manage App Lifecycle: https://developer.chrome.com/apps/app_lifecycle).
8735
- * The default value is "false." When the application is loaded, any serial connections previously opened with persistent=true can be fetched with getConnections. */
8736
- persistent?: boolean | undefined;
8737
- /** Optional. An application-defined string to associate with the connection. */
8738
- name?: string | undefined;
8739
- /** Optional. The size of the buffer used to receive data. The default value is 4096. */
8740
- bufferSize?: number | undefined;
8741
- /** Optional. The requested bitrate of the connection to be opened.
8742
- * For compatibility with the widest range of hardware, this number should match one of commonly-available bitrates,
8743
- * such as 110, 300, 1200, 2400, 4800, 9600, 14400, 19200, 38400, 57600, 115200.
8744
- * There is no guarantee, of course, that the device connected to the serial port will support the requested bitrate, even if the port itself supports that bitrate.
8745
- * 9600 will be passed by default. */
8746
- bitrate?: number | undefined;
8747
- /** Optional. "eight" will be passed by default. */
8748
- dataBits?: typeof DataBits[keyof typeof DataBits] | undefined;
8749
- /** Optional. "no" will be passed by default. */
8750
- parityBit?: typeof ParityBit[keyof typeof ParityBit] | undefined;
8751
- /** Optional. "one" will be passed by default. */
8752
- stopBits?: typeof StopBits[keyof typeof StopBits] | undefined;
8753
- /** Optional. Flag indicating whether or not to enable RTS/CTS hardware flow control. Defaults to false. */
8754
- ctsFlowControl?: boolean | undefined;
8755
- /** Optional. The maximum amount of time (in milliseconds) to wait for new data before raising an onReceiveError event with a "timeout" error.
8756
- * If zero, receive timeout errors will not be raised for the connection.
8757
- * Defaults to 0. */
8758
- receiveTimeout?: number | undefined;
8759
- /** Optional. The maximum amount of time (in milliseconds) to wait for a send operation to complete before calling the callback with a "timeout" error.
8760
- * If zero, send timeout errors will not be triggered.
8761
- * Defaults to 0. */
8762
- sendTimeout?: number | undefined;
8763
- }
8764
-
8765
- /**
8766
- * @since Chrome 33
8767
- * @description Returns information about available serial devices on the system. The list is regenerated each time this method is called.
8768
- * @param callback Called with the list of DeviceInfo objects.
8769
- */
8770
- export function getDevices(callback: (ports: DeviceInfo[]) => void): void;
8771
-
8772
- /**
8773
- * @since Chrome 33
8774
- * @description Connects to a given serial port.
8775
- * @param path The system path of the serial port to open.
8776
- * @param options Port configuration options.
8777
- * @param callback Called when the connection has been opened.
8778
- */
8779
- export function connect(
8780
- path: string,
8781
- options: ConnectionOptions,
8782
- callback: (connectionInfo: ConnectionInfo) => void,
8783
- ): void;
8784
-
8785
- /**
8786
- * @since Chrome 33
8787
- * @description Update the option settings on an open serial port connection.
8788
- * @param connectionId The id of the opened connection.
8789
- * @param options Port configuration options.
8790
- * @param callback Called when the configuration has completed.
8791
- */
8792
- export function update(
8793
- connectionId: number,
8794
- options: ConnectionOptions,
8795
- callback: (result: boolean) => void,
8796
- ): void;
8797
-
8798
- /**
8799
- * @since Chrome 33
8800
- * @description Disconnects from a serial port.
8801
- * @param connectionId The id of the opened connection.
8802
- * @param callback Called when the connection has been closed.
8803
- */
8804
- export function disconnect(connectionId: number, callback: (result: boolean) => void): void;
8805
-
8806
- /**
8807
- * @since Chrome 33
8808
- * @description Pauses or unpauses an open connection.
8809
- * @param connectionId The id of the opened connection.
8810
- * @param paused Flag to indicate whether to pause or unpause.
8811
- * @param callback Called when the connection has been successfully paused or unpaused.
8812
- */
8813
- export function setPaused(connectionId: number, paused: boolean, callback: () => void): void;
8814
-
8815
- /**
8816
- * @since Chrome 33
8817
- * @description Retrieves the state of a given connection.
8818
- * @param callback Called with connection state information when available.
8819
- */
8820
- export function getInfo(callback: (connectionInfos: ConnectionInfo[]) => void): void;
8821
-
8822
- /**
8823
- * @since Chrome 33
8824
- * @description Retrieves the list of currently opened serial port connections owned by the application.
8825
- * @param callback Called with the list of connections when available.
8826
- */
8827
- export function getConnections(callback: (connectionInfos: ConnectionInfo[]) => void): void;
8828
-
8829
- /**
8830
- * @since Chrome 33
8831
- * @description Writes data to the given connection.
8832
- * @param connectionId The id of the connection.
8833
- * @param data The data to send.
8834
- * @param callback Called when the operation has completed.
8835
- */
8836
- export function send(connectionId: number, data: ArrayBuffer, callback: (sendInfo: object) => void): void;
8837
-
8838
- /**
8839
- * @description Flushes all bytes in the given connection's input and output buffers.
8840
- * @param connectionId The id of the connection.
8841
- * @param callback
8842
- */
8843
- export function flush(connectionId: number, callback: (result: boolean) => void): void;
8844
-
8845
- /**
8846
- * @description Retrieves the state of control signals on a given connection.
8847
- * @param connectionId The id of the connection.
8848
- * @param callback Called when the control signals are available.
8849
- */
8850
- export function getControlSignals(connectionId: number, callback: (signals: object) => void): void;
8851
-
8852
- /**
8853
- * @description Sets the state of control signals on a given connection.
8854
- * @param connectionId The id of the connection.
8855
- * @param signals The set of signal changes to send to the device:
8856
- * boolean: (optional) dtr - DTR (Data Terminal Ready).
8857
- * boolean: (optional) rts - RTS (Request To Send).
8858
- * @param callback Called once the control signals have been set.
8859
- */
8860
- export function setControlSignals(
8861
- connectionId: number,
8862
- signals: object,
8863
- callback: (result: boolean) => void,
8864
- ): void;
8865
-
8866
- /**
8867
- * @since Chrome 45
8868
- * @description Suspends character transmission on a given connection and places the transmission line in a break state until the clearBreak is called.
8869
- * @param connectionId The id of the connection.
8870
- * @param callback
8871
- */
8872
- export function setBreak(connectionId: number, callback: (result: boolean) => void): void;
8873
-
8874
- /**
8875
- * @since Chrome 45
8876
- * @description Restore character transmission on a given connection and place the transmission line in a nonbreak state.
8877
- * @param connectionId The id of the connection.
8878
- * @param callback
8879
- */
8880
- export function clearBreak(connectionId: number, callback: (result: boolean) => void): void;
8881
- }
8882
-
8883
- export namespace serial.onReceive {
8884
- export interface OnReceiveInfo {
8885
- /** The connection identifier. */
8886
- connectionId: number;
8887
- /** The data received. */
8888
- data: ArrayBuffer;
8889
- }
8890
-
8891
- /**
8892
- * @since Chrome 33
8893
- * @description Event raised when data has been read from the connection.
8894
- * @param callback
8895
- */
8896
- export function addListener(callback: (info: OnReceiveInfo) => void): void;
8897
- }
8898
-
8899
- export namespace serial.onReceiveError {
8900
- export const OnReceiveErrorEnum: {
8901
- /* The connection was disconnected. */
8902
- disconnected: "disconnected";
8903
- /* No data has been received for receiveTimeout milliseconds. */
8904
- timeout: "timeout";
8905
- /* The device was most likely disconnected from the host. */
8906
- device_lost: "device_lost";
8907
- /* The device detected a break condition. */
8908
- break: "break";
8909
- /* The device detected a framing error. */
8910
- frame_error: "frame_error";
8911
- /* A character-buffer overrun has occurred. The next character is lost. */
8912
- overrun: "overrun";
8913
- /* An input buffer overflow has occurred. There is either no room in the input buffer, or a character was received after the end-of-file (EOF) character. */
8914
- buffer_overflow: "buffer_overflow";
8915
- /* The device detected a parity error. */
8916
- parity_error: "parity_error";
8917
- /* A system error occurred and the connection may be unrecoverable. */
8918
- system_error: "system_error";
8919
- };
8920
-
8921
- export interface OnReceiveErrorInfo {
8922
- /** The connection identifier. */
8923
- connectionId: number;
8924
- /** The data received. */
8925
- error: ArrayBuffer;
8926
- }
8927
-
8928
- /**
8929
- * @since Chrome 33
8930
- * @description Event raised when an error occurred while the runtime was waiting for data on the serial port.
8931
- * Once this event is raised, the connection may be set to paused. A "timeout" error does not pause the connection.
8932
- * @param callback
8933
- */
8934
- export function addListener(callback: (info: OnReceiveErrorInfo) => void): void;
8935
- }
8936
-
8937
8586
  ////////////////////
8938
8587
  // Runtime
8939
8588
  ////////////////////
@@ -8941,11 +8590,13 @@ export namespace Browser {
8941
8590
  * Use the `Browser.runtime` API to retrieve the service worker, return details about the manifest, and listen for and respond to events in the extension lifecycle. You can also use this API to convert the relative path of URLs to fully-qualified URLs.
8942
8591
  */
8943
8592
  export namespace runtime {
8944
- /** Populated with an error message if calling an API function fails; otherwise undefined. This is only defined within the scope of that function's callback. If an error is produced, but `runtime.lastError` is not accessed within the callback, a message is logged to the console listing the API function that produced the error. API functions that return promises do not set this property. */
8945
- export const lastError: {
8593
+ export interface LastError {
8946
8594
  /** Details about the error which occurred. */
8947
8595
  message?: string;
8948
- } | undefined;
8596
+ }
8597
+
8598
+ /** Populated with an error message if calling an API function fails; otherwise undefined. This is only defined within the scope of that function's callback. If an error is produced, but `runtime.lastError` is not accessed within the callback, a message is logged to the console listing the API function that produced the error. API functions that return promises do not set this property. */
8599
+ export const lastError: LastError | undefined;
8949
8600
 
8950
8601
  /** The ID of the extension/app. */
8951
8602
  export const id: string;
@@ -9173,6 +8824,11 @@ export namespace Browser {
9173
8824
  name: string;
9174
8825
  }
9175
8826
 
8827
+ export interface UpdateAvailableDetails {
8828
+ /** The version number of the available update. */
8829
+ version: string;
8830
+ }
8831
+
9176
8832
  export interface UpdateCheckDetails {
9177
8833
  /** The version of the available update. */
9178
8834
  version: string;
@@ -9652,7 +9308,7 @@ export namespace Browser {
9652
9308
  */
9653
9309
  export function requestUpdateCheck(): Promise<RequestUpdateCheckResult>;
9654
9310
  export function requestUpdateCheck(
9655
- callback: (status: `${RequestUpdateCheckStatus}`, details?: { version: string }) => void,
9311
+ callback: (status: `${RequestUpdateCheckStatus}`, details?: UpdateCheckDetails) => void,
9656
9312
  ): void;
9657
9313
 
9658
9314
  /** Restart the ChromeOS device when the app runs in kiosk mode. Otherwise, it's no-op. */
@@ -9771,7 +9427,7 @@ export namespace Browser {
9771
9427
  export const onRestartRequired: events.Event<(reason: `${OnRestartRequiredReason}`) => void>;
9772
9428
 
9773
9429
  /** Fired when an update is available, but isn't installed immediately because the app is currently running. If you do nothing, the update will be installed the next time the background page gets unloaded, if you want it to be installed sooner you can explicitly call Browser.runtime.reload(). If your extension is using a persistent background page, the background page of course never gets unloaded, so unless you call Browser.runtime.reload() manually in response to this event the update will not get installed until the next time Chrome itself restarts. If no handlers are listening for this event, and your extension has a persistent background page, it behaves as if Browser.runtime.reload() is called in response to this event. */
9774
- export const onUpdateAvailable: events.Event<(details: { version: string }) => void>;
9430
+ export const onUpdateAvailable: events.Event<(details: UpdateAvailableDetails) => void>;
9775
9431
 
9776
9432
  /**
9777
9433
  * Fired when a Chrome update is available, but isn't installed immediately because a browser restart is required.
@@ -10374,99 +10030,6 @@ export namespace Browser {
10374
10030
  export var onChanged: StorageChangedEvent;
10375
10031
  }
10376
10032
 
10377
- ////////////////////
10378
- // Socket
10379
- ////////////////////
10380
- /**
10381
- * @deprecated Part of the deprecated Chrome Apps platform
10382
- */
10383
- export namespace socket {
10384
- export interface CreateInfo {
10385
- socketId: number;
10386
- }
10387
-
10388
- export interface AcceptInfo {
10389
- resultCode: number;
10390
- socketId?: number | undefined;
10391
- }
10392
-
10393
- export interface ReadInfo {
10394
- resultCode: number;
10395
- data: ArrayBuffer;
10396
- }
10397
-
10398
- export interface WriteInfo {
10399
- bytesWritten: number;
10400
- }
10401
-
10402
- export interface RecvFromInfo {
10403
- resultCode: number;
10404
- data: ArrayBuffer;
10405
- port: number;
10406
- address: string;
10407
- }
10408
-
10409
- export interface SocketInfo {
10410
- socketType: string;
10411
- localPort?: number | undefined;
10412
- peerAddress?: string | undefined;
10413
- peerPort?: number | undefined;
10414
- localAddress?: string | undefined;
10415
- connected: boolean;
10416
- }
10417
-
10418
- export interface NetworkInterface {
10419
- name: string;
10420
- address: string;
10421
- }
10422
-
10423
- export function create(
10424
- type: string,
10425
- options?: { [key: string]: unknown },
10426
- callback?: (createInfo: CreateInfo) => void,
10427
- ): void;
10428
- export function destroy(socketId: number): void;
10429
- export function connect(
10430
- socketId: number,
10431
- hostname: string,
10432
- port: number,
10433
- callback: (result: number) => void,
10434
- ): void;
10435
- export function bind(socketId: number, address: string, port: number, callback: (result: number) => void): void;
10436
- export function disconnect(socketId: number): void;
10437
- export function read(socketId: number, bufferSize?: number, callback?: (readInfo: ReadInfo) => void): void;
10438
- export function write(socketId: number, data: ArrayBuffer, callback?: (writeInfo: WriteInfo) => void): void;
10439
- export function recvFrom(
10440
- socketId: number,
10441
- bufferSize?: number,
10442
- callback?: (recvFromInfo: RecvFromInfo) => void,
10443
- ): void;
10444
- export function sendTo(
10445
- socketId: number,
10446
- data: ArrayBuffer,
10447
- address: string,
10448
- port: number,
10449
- callback?: (writeInfo: WriteInfo) => void,
10450
- ): void;
10451
- export function listen(
10452
- socketId: number,
10453
- address: string,
10454
- port: number,
10455
- backlog?: number,
10456
- callback?: (result: number) => void,
10457
- ): void;
10458
- export function accept(socketId: number, callback?: (acceptInfo: AcceptInfo) => void): void;
10459
- export function setKeepAlive(
10460
- socketId: number,
10461
- enable: boolean,
10462
- delay?: number,
10463
- callback?: (result: boolean) => void,
10464
- ): void;
10465
- export function setNoDelay(socketId: number, noDelay: boolean, callback?: (result: boolean) => void): void;
10466
- export function getInfo(socketId: number, callback: (result: SocketInfo) => void): void;
10467
- export function getNetworkList(callback: (result: NetworkInterface[]) => void): void;
10468
- }
10469
-
10470
10033
  ////////////////////
10471
10034
  // System CPU
10472
10035
  ////////////////////