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

Side by Side Diff: chrome/common/extensions/api/messaging/message.h

Issue 201203006: Move basic API permissions code out of //chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 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 CHROME_COMMON_EXTENSIONS_API_MESSAGING_MESSAGE_H_
6 #define CHROME_COMMON_EXTENSIONS_API_MESSAGING_MESSAGE_H_
7
8 namespace extensions {
9
10 // A message consists of both the data itself as well as a user gestur e state.
11 struct Message {
12 std::string data;
13 bool user_gesture;
14
15 Message() : data(), user_gesture(false) {}
16 Message(const std::string& data, bool user_gesture)
17 : data(data), user_gesture(user_gesture) {}
18 };
19
20 } // namespace extensions
21
22 #endif // CHROME_COMMON_EXTENSIONS_API_MESSAGING_MESSAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698