| Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTCharacteristic.h | 
| diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTCharacteristic.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTCharacteristic.h | 
| index efb8c58b73560dc8112220c8807cc4fee25c60af..2f4154cd36cfaaba73807b09b4358b3363043b38 100644 | 
| --- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTCharacteristic.h | 
| +++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTCharacteristic.h | 
| @@ -5,12 +5,16 @@ | 
| #ifndef WebBluetoothGATTCharacteristic_h | 
| #define WebBluetoothGATTCharacteristic_h | 
|  | 
| +#include "public/platform/WebVector.h" | 
| + | 
| namespace blink { | 
|  | 
| // An object through which the embedder can trigger events on a Document-bound | 
| // Web Bluetooth GATT Characteristic object. | 
| class WebBluetoothGATTCharacteristic { | 
| public: | 
| +    // Used to notify blink that the characteristic's value changed. | 
| +    virtual void dispatchCharacteristicValueChanged(const WebVector<uint8_t>&) = 0; | 
| }; | 
|  | 
| } // namespace blink | 
|  |