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

Side by Side Diff: chrome/renderer/extensions/tts_custom_bindings.cc

Issue 10821133: Move c/r/extensions/* into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master for cq Created 8 years, 4 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 "chrome/renderer/extensions/tts_custom_bindings.h" 5 #include "chrome/renderer/extensions/tts_custom_bindings.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "chrome/common/extensions/extension_action.h" 9 #include "chrome/common/extensions/extension_action.h"
10 #include "chrome/renderer/extensions/extension_dispatcher.h"
11 #include "grit/renderer_resources.h" 10 #include "grit/renderer_resources.h"
12 #include "v8/include/v8.h" 11 #include "v8/include/v8.h"
13 12
14 namespace extensions { 13 namespace extensions {
15 14
16 TTSCustomBindings::TTSCustomBindings() 15 TTSCustomBindings::TTSCustomBindings()
17 : ChromeV8Extension(NULL) { 16 : ChromeV8Extension(NULL) {
18 RouteStaticFunction("GetNextTTSEventId", &GetNextTTSEventId); 17 RouteStaticFunction("GetNextTTSEventId", &GetNextTTSEventId);
19 } 18 }
20 19
21 // static 20 // static
22 v8::Handle<v8::Value> TTSCustomBindings::GetNextTTSEventId( 21 v8::Handle<v8::Value> TTSCustomBindings::GetNextTTSEventId(
23 const v8::Arguments& args) { 22 const v8::Arguments& args) {
24 // Note: this works because the TTS API only works in the 23 // Note: this works because the TTS API only works in the
25 // extension process, not content scripts. 24 // extension process, not content scripts.
26 static int next_tts_event_id = 1; 25 static int next_tts_event_id = 1;
27 return v8::Integer::New(next_tts_event_id++); 26 return v8::Integer::New(next_tts_event_id++);
28 } 27 }
29 28
30 } // extensions 29 } // extensions
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/tabs_custom_bindings.cc ('k') | chrome/renderer/extensions/user_script_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698