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

Side by Side Diff: extensions/browser/api/cast_channel/cast_channel_api.cc

Issue 2689673002: Inline base::BinaryValue into base::Value (Closed)
Patch Set: Rebase Created 3 years, 10 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "extensions/browser/api/cast_channel/cast_channel_api.h" 5 #include "extensions/browser/api/cast_channel/cast_channel_api.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <limits> 10 #include <limits>
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 #include <utility> 13 #include <utility>
14 #include <vector>
14 15
15 #include "base/json/json_writer.h" 16 #include "base/json/json_writer.h"
16 #include "base/lazy_instance.h" 17 #include "base/lazy_instance.h"
17 #include "base/memory/ptr_util.h" 18 #include "base/memory/ptr_util.h"
18 #include "base/strings/string_number_conversions.h" 19 #include "base/strings/string_number_conversions.h"
19 #include "base/values.h" 20 #include "base/values.h"
20 #include "content/public/browser/browser_thread.h" 21 #include "content/public/browser/browser_thread.h"
21 #include "extensions/browser/api/cast_channel/cast_message_util.h" 22 #include "extensions/browser/api/cast_channel/cast_message_util.h"
22 #include "extensions/browser/api/cast_channel/cast_socket.h" 23 #include "extensions/browser/api/cast_channel/cast_socket.h"
23 #include "extensions/browser/api/cast_channel/keep_alive_delegate.h" 24 #include "extensions/browser/api/cast_channel/keep_alive_delegate.h"
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 BrowserThread::PostTask( 512 BrowserThread::PostTask(
512 BrowserThread::UI, FROM_HERE, 513 BrowserThread::UI, FROM_HERE,
513 base::Bind(ui_dispatch_cb_, socket_->owner_extension_id(), 514 base::Bind(ui_dispatch_cb_, socket_->owner_extension_id(),
514 base::Passed(std::move(event)))); 515 base::Passed(std::move(event))));
515 } 516 }
516 517
517 void CastChannelOpenFunction::CastMessageHandler::Start() { 518 void CastChannelOpenFunction::CastMessageHandler::Start() {
518 } 519 }
519 520
520 } // namespace extensions 521 } // namespace extensions
OLDNEW
« no previous file with comments | « content/common/android/gin_java_bridge_value.cc ('k') | extensions/browser/api/cast_channel/cast_message_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698