X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Flibaddressinput%2Fsrc%2Fcpp%2Ftest%2Ffake_storage.h;h=55273c64cf2cb851b0a2de6f41e75c2e8fe7068b;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=5e07cb0809342805179505040abc5187b5b65d68;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/libaddressinput/src/cpp/test/fake_storage.h b/src/third_party/libaddressinput/src/cpp/test/fake_storage.h index 5e07cb0..55273c6 100644 --- a/src/third_party/libaddressinput/src/cpp/test/fake_storage.h +++ b/src/third_party/libaddressinput/src/cpp/test/fake_storage.h @@ -30,7 +30,7 @@ namespace addressinput { // class MyClass { // public: // MyClass() : storage_(), -// callback(BuildCallback(this, &MyClass::OnDataReady)) {} +// data_ready_(BuildCallback(this, &MyClass::OnDataReady)) {} // // ~MyClass() {} // @@ -39,7 +39,7 @@ namespace addressinput { // } // // void Read() { -// storage_.Get("key", *callback_); +// storage_.Get("key", *data_ready_); // } // // private: @@ -51,7 +51,7 @@ namespace addressinput { // } // // FakeStorage storage_; -// scoped_ptr callback_; +// const scoped_ptr data_ready_; // // DISALLOW_COPY_AND_ASSIGN(MyClass); // };