Home | History | Annotate | Download | only in network
      1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef ASH_SYSTEM_CHROMEOS_NETWORK_SMS_OBSERVER_H
      6 #define ASH_SYSTEM_CHROMEOS_NETWORK_SMS_OBSERVER_H
      7 
      8 namespace base {
      9 class DictionaryValue;
     10 }
     11 
     12 namespace ash {
     13 
     14 const char kSmsNumberKey[] = "number";
     15 const char kSmsTextKey[] = "text";
     16 
     17 class SmsObserver {
     18  public:
     19   virtual ~SmsObserver() {}
     20 
     21   virtual void AddMessage(const base::DictionaryValue& message) = 0;
     22 };
     23 
     24 }  // namespace ash
     25 
     26 #endif  // ASH_SYSTEM_CHROMEOS_NETWORK_SMS_OBSERVER_H
     27