Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(425)

Side by Side Diff: Source/WebCore/Modules/intents/NavigatorIntents.h

Issue 9949021: Merge 113282 - Switch web intents API to be vendor-prefixed (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, Google Inc. All rights reserved. 2 * Copyright (C) 2011, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met: 5 * modification, are permitted provided that the following conditions are met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 22 matching lines...) Expand all
33 namespace WebCore { 33 namespace WebCore {
34 34
35 class Intent; 35 class Intent;
36 class IntentResultCallback; 36 class IntentResultCallback;
37 class Navigator; 37 class Navigator;
38 38
39 typedef int ExceptionCode; 39 typedef int ExceptionCode;
40 40
41 class NavigatorIntents { 41 class NavigatorIntents {
42 public: 42 public:
43 static void startActivity(Navigator*, PassRefPtr<Intent>, PassRefPtr<IntentR esultCallback> successCallback, PassRefPtr<IntentResultCallback> errorCallback, ExceptionCode&); 43 static void webkitStartActivity(Navigator*, PassRefPtr<Intent>, PassRefPtr<I ntentResultCallback> successCallback, PassRefPtr<IntentResultCallback> errorCall back, ExceptionCode&);
44 44
45 private: 45 private:
46 NavigatorIntents(); 46 NavigatorIntents();
47 ~NavigatorIntents(); 47 ~NavigatorIntents();
48 }; 48 };
49 49
50 } // namespace WebCore 50 } // namespace WebCore
51 51
52 #endif // ENABLE(WEB_INTENTS) 52 #endif // ENABLE(WEB_INTENTS)
53 53
54 #endif // NavigatorIntents_h 54 #endif // NavigatorIntents_h
OLDNEW
« no previous file with comments | « Source/WebCore/Modules/intents/DOMWindowIntents.idl ('k') | Source/WebCore/Modules/intents/NavigatorIntents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698